From ac20adb79d11a27c722fe338c2e467dd1b2a728a Mon Sep 17 00:00:00 2001 From: leonardo-toniolo Date: Thu, 4 Jun 2026 12:09:45 -0300 Subject: [PATCH] first commit --- .../hooks/state/continual-learning-index.json | 9 + .env.example | 4 + .gitignore | 4 + AGENTS.md | 28 + README.md | 185 + docs/references/planview-rest-api-v2.md | 38 + examples/api-key.ts | 31 + examples/session-login.ts | 19 + package-lock.json | 583 + package.json | 41 + scripts/generate-api-types.py | 252 + scripts/scrape-api.ts | 81 + scripts/scrape-metadata.ts | 50 + scripts/scrape-types.py | 166 + src/clarizen-api-types.ts | 519 + src/clarizen.ts | 147 + src/endpoints.ts | 68 + src/errors.ts | 19 + src/generated/clarizen-schema.json | 1979 + src/generated/metadata-catalog.json | 244365 +++++++++++++++ src/generated/metadata-types.ts | 1225 + src/http.ts | 134 + src/index.ts | 39 + src/metadata/catalog.ts | 160 + src/metadata/filter.ts | 38 + src/metadata/generate-types.ts | 70 + src/metadata/index.ts | 15 + src/metadata/service.ts | 67 + src/metadata/types.ts | 38 + src/objects.ts | 51 + src/service.ts | 57 + src/types.ts | 75 + tsconfig.json | 18 + 33 files changed, 250575 insertions(+) create mode 100644 .cursor/hooks/state/continual-learning-index.json create mode 100644 .env.example create mode 100644 .gitignore create mode 100644 AGENTS.md create mode 100644 README.md create mode 100644 docs/references/planview-rest-api-v2.md create mode 100644 examples/api-key.ts create mode 100644 examples/session-login.ts create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 scripts/generate-api-types.py create mode 100644 scripts/scrape-api.ts create mode 100644 scripts/scrape-metadata.ts create mode 100644 scripts/scrape-types.py create mode 100644 src/clarizen-api-types.ts create mode 100644 src/clarizen.ts create mode 100644 src/endpoints.ts create mode 100644 src/errors.ts create mode 100644 src/generated/clarizen-schema.json create mode 100644 src/generated/metadata-catalog.json create mode 100644 src/generated/metadata-types.ts create mode 100644 src/http.ts create mode 100644 src/index.ts create mode 100644 src/metadata/catalog.ts create mode 100644 src/metadata/filter.ts create mode 100644 src/metadata/generate-types.ts create mode 100644 src/metadata/index.ts create mode 100644 src/metadata/service.ts create mode 100644 src/metadata/types.ts create mode 100644 src/objects.ts create mode 100644 src/service.ts create mode 100644 src/types.ts create mode 100644 tsconfig.json diff --git a/.cursor/hooks/state/continual-learning-index.json b/.cursor/hooks/state/continual-learning-index.json new file mode 100644 index 0000000..7719a55 --- /dev/null +++ b/.cursor/hooks/state/continual-learning-index.json @@ -0,0 +1,9 @@ +{ + "version": 1, + "transcripts": { + "/Users/leonardotoniolo/.cursor/projects/Users-leonardotoniolo-Developer-www-RivusLab-Clients-ARCO-middleware/agent-transcripts/91a87ea5-b164-4e87-821c-88d955d8fbe5/91a87ea5-b164-4e87-821c-88d955d8fbe5.jsonl": { + "mtimeMs": 1780410511000, + "processedAt": "2026-06-02T14:30:00.000Z" + } + } +} diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..235dcb2 --- /dev/null +++ b/.env.example @@ -0,0 +1,4 @@ +CLARIZEN_BASE_URL=https://api.clarizen.com +CLARIZEN_API_KEY=your-api-key-here +CLARIZEN_USERNAME=your-user@company.com +CLARIZEN_PASSWORD=your-password diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa0926a --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +node_modules/ +dist/ +.env +*.log diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..578916a --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,28 @@ +# AGENTS + +## Learned User Preferences + +- Wants a TypeScript Clarizen client with SDK-style API: `new Clarizen(url, apiToken)` and namespaced methods (e.g. `clarizen.data.entityQuery(...)`). +- Wants session authentication via `authentication.login(user, pass)` that returns an API session for subsequent calls, not only static API tokens. +- May describe requirements in Portuguese as well as English. +- Wants full Clarizen API typings from `https://api.clarizen.com/V2.0/services/types/`, including nested types (`Condition`, `Expression`, `Operator`, etc.) — not generic `JsonObject` shortcuts for documented fields. +- When adding types, follow nested type links from the API docs and model every referenced type, not only top-level operation params. +- When extending the SDK, cross-check the Planview Adaptive Work REST API Guide (V2) with live `api.clarizen.com` docs; apply guide content only when it adds value beyond the live schema pages. +- Wants automatic retry (3 attempts) on all Clarizen HTTP calls except when the API returns `SessionTimeout`. + +## Learned Workspace Facts + +- ARCO monorepo (RivusLab): `clarizen-lib/` is the Clarizen SDK; sibling apps consume `@arco/clarizen-lib` via npm workspaces or `file:../clarizen-lib`. +- TypeScript package `@arco/clarizen-lib`: Clarizen / Planview Adaptive Work REST API V2.0 client. +- Clarizen V2.0 REST on `api.clarizen.com` is the Planview Adaptive Work API (Clarizen host, same V2.0 surface). +- Target API surface: `https://api.clarizen.com/V2.0/services/`; operations grouped in namespaces (`data`, `authentication`, `metadata`, etc.). +- Type schemas at `https://api.clarizen.com/V2.0/services/types/` drive request/response TypeScript types (e.g. EntityQuery `where` is `Condition`, sort is `orders` not `orderBy`). +- Secondary reference: Planview Adaptive Work REST API Guide V2 at https://success.planview.com/Planview_AdaptiveWork/API/REST_API_Guide_Version_2 +- HTTP auth: `Authorization: ApiKey {token}` for API keys; `Authorization: Session {sessionId}` after login. +- All SDK HTTP traffic goes through `HttpClient.request`; retries are centralized there (3 attempts, no retry on `SessionTimeout`). +- Multi-tenant session login: `loginWithDiscovery` calls `authentication.getServerDefinition`, sets `baseUrl` from `serverLocation`, then `authentication.login`. +- `Clarizen.createForLogin(baseUrl?)` builds a client without prior auth for the discovery/login flow. +- Entity CRUD is exposed as `clarizen.objects` (REST under `/V2.0/services/data/objects/{typeName}/...`). +- API TypeScript types are generated from crawled schema (`npm run scrape:types` → `src/generated/clarizen-schema.json`, `npm run generate:types` → `src/clarizen-api-types.ts`). +- Planview guide notes live in `docs/references/planview-rest-api-v2.md`. +- Org metadata catalog: `listEntities` + `describeMetadata` with `flags: ["fields", "relations"]`; `clarizen.metadata.fetchCatalog()` at runtime; `npm run scrape:metadata` → `src/generated/metadata-catalog.json` + `metadata-types.ts`. Filter out names containing `C_` or `R_` (custom fields/relations/entities). diff --git a/README.md b/README.md new file mode 100644 index 0000000..2293588 --- /dev/null +++ b/README.md @@ -0,0 +1,185 @@ +# @arco/clarizen-lib + +TypeScript client for the [Planview Adaptive Work REST API V2.0](https://api.clarizen.com/V2.0/services/). + +Human-readable guide: [REST API Guide Version 2](https://success.planview.com/Planview_AdaptiveWork/API/REST_API_Guide_Version_2) — see also [docs/references/planview-rest-api-v2.md](docs/references/planview-rest-api-v2.md). + +## Install (library) + +```bash +cd clarizen-lib +npm install +npm run build +``` + +## Use from another package in this repo + +From the ARCO root (npm workspaces): + +```bash +cd /path/to/ARCO +npm install +``` + +In your app `package.json`: + +```json +{ + "dependencies": { + "@arco/clarizen-lib": "workspace:*" + } +} +``` + +Without workspaces (sibling folder): + +```json +{ + "dependencies": { + "@arco/clarizen-lib": "file:../clarizen-lib" + } +} +``` + +Then build the library once (`npm run build` inside `clarizen-lib`) and import: + +```typescript +import { Clarizen } from "@arco/clarizen-lib"; +``` + +## Usage + +### API key (recommended) + +```typescript +import { Clarizen } from "@arco/clarizen-lib"; + +const clarizen = new Clarizen("https://api.clarizen.com", process.env.CLARIZEN_API_KEY); + +const users = await clarizen.data.entityQuery({ + typeName: "User", + fields: ["Name", "Email"], + paging: { limit: 10, from: 0 }, +}); +``` + +Or with options: + +```typescript +const clarizen = new Clarizen({ + baseUrl: "https://api.clarizen.com", + apiToken: process.env.CLARIZEN_API_KEY, +}); +``` + +### Session (username + password) + +```typescript +const clarizen = Clarizen.createForLogin("https://api.clarizen.com"); + +const { sessionId } = await clarizen.loginWithDiscovery({ + userName: "user@company.com", + password: "secret", +}); +``` + +### Entity CRUD + +```typescript +const { id } = await clarizen.objects.create("Issue", { title: "Issue 1" }); +const issue = await clarizen.objects.get("Issue", id, { + fields: ["CreatedOn", "CreatedBy.Name"], +}); +``` + +Or construct directly with an existing session: + +```typescript +const clarizen = new Clarizen({ + baseUrl: "https://api.clarizen.com", + sessionId: "abc123_28849473", +}); +``` + +## Services + +All documented operations are exposed under namespaces: + +| Namespace | Example | +|-----------|---------| +| `authentication` | `clarizen.authentication.login({ userName, password })` | +| `data` | `clarizen.data.entityQuery({ typeName, fields })` | +| `objects` | `clarizen.objects.get("Issue", id, { fields: [...] })` | +| `metadata` | `clarizen.metadata.fetchCatalog()` | +| `files` | `clarizen.files.getUploadUrl()` | +| `bulk` | `clarizen.bulk.execute({ ... })` | +| `applications` | `clarizen.applications.getApplicationStatus()` | +| `utils` | `clarizen.utils.sendEMail({ ... })` | + +Generic call: + +```typescript +await clarizen.call("data", "EntityQuery", { typeName: "Project", fields: ["Name"] }); +``` + +## Environment + +Copy `.env.example` to `.env`: + +``` +CLARIZEN_BASE_URL=https://api.clarizen.com +CLARIZEN_API_KEY=... +CLARIZEN_USERNAME=... +CLARIZEN_PASSWORD=... +``` + +## Examples + +```bash +npm run example:api-key +npm run example:session +``` + +## Regenerate endpoints from API docs + +```bash +npm run scrape +``` + +## Regenerate API types (60 types, recursive crawl) + +Crawls all operations and `/V2.0/services/types/*`, then generates `src/clarizen-api-types.ts`: + +```bash +npm run scrape:types # writes src/generated/clarizen-schema.json +npm run generate:types # writes src/clarizen-api-types.ts +``` + +Includes `Condition`, `Expression`, `Query` (11 variants), `EntityQuery`, enums (`Operator`, `ErrorCode`, …), and nested types referenced from each page. + +## Org metadata catalog (runtime + codegen) + +Fetches your tenant’s entity types, fields, and relations via `listEntities` + `describeMetadata` (`flags: ["fields", "relations"]`). Custom names containing `C_` or `R_` are excluded. + +**Runtime:** + +```typescript +const catalog = await clarizen.metadata.fetchCatalog(); +const project = catalog.entities.find((e) => e.typeName === "Project"); +``` + +**Regenerate** (requires `.env` credentials): + +```bash +npm run scrape:metadata # writes src/generated/metadata-catalog.json + metadata-types.ts +npm run build +``` + +**Typed entity/field names** (after scrape): + +```typescript +import type { EntityTypeName } from "@arco/clarizen-lib"; +import { FIELDS_BY_ENTITY, entityFields } from "@arco/clarizen-lib/metadata"; +``` + +Commit `metadata-types.ts` (and optionally `metadata-catalog.json`) when refreshing against your reference tenant. diff --git a/docs/references/planview-rest-api-v2.md b/docs/references/planview-rest-api-v2.md new file mode 100644 index 0000000..28bb72a --- /dev/null +++ b/docs/references/planview-rest-api-v2.md @@ -0,0 +1,38 @@ +# Planview Adaptive Work — REST API V2 (reference) + +Official guide: [REST API Guide Version 2](https://success.planview.com/Planview_AdaptiveWork/API/REST_API_Guide_Version_2) + +Live operation/type reference: [https://api.clarizen.com/V2.0/services/](https://api.clarizen.com/V2.0/services/) (requires `Accept: text/html` or API auth) + +## Auth flow (password) + +1. `POST authentication/getServerDefinition` → `serverLocation` (org datacenter, e.g. `https://api2.clarizen.com/V2.0/services`) +2. `POST authentication/login` on that base URL → `sessionId` +3. Subsequent calls: `Authorization: Session {sessionId}` + +API keys use `Authorization: ApiKey {token}` on the org’s API host (often discoverable via `getServerDefinition` with the key). + +## Entity CRUD + +`/V2.0/services/data/objects/{typeName}` — PUT create +`/V2.0/services/data/objects/{typeName}/{id}` — GET retrieve, POST update, DELETE remove + +Field selection on GET: `?fields=CreatedOn,CreatedBy.Name` + +## Queries + +- `data/entityQuery` — structured `where` (`Condition`), `orders`, `paging` (`from` / `limit`) +- `data/query` — CZQL (`?q=SELECT ...`) +- Conditions may include `_type: 'Compare'` (optional; see guide examples) + +## Operations notes + +- Prefer `Accept-Encoding: gzip` on requests +- Errors: HTTP 500 body with `errorCode`, `message`, `referenceId` +- Session idle timeout ~10 minutes; max 2 concurrent sessions per user +- Rate limit: ~25 requests/second per organization (bulk inner calls count separately) + +## Related Planview articles (same site) + +- [API Keys Support](https://success.planview.com/Planview_AdaptiveWork/API/API_Keys_Support) (sibling under API) +- CZQL — linked from the v2 guide “New Features” section diff --git a/examples/api-key.ts b/examples/api-key.ts new file mode 100644 index 0000000..c69508f --- /dev/null +++ b/examples/api-key.ts @@ -0,0 +1,31 @@ +import "dotenv/config"; +import { Clarizen } from "../src/index.js"; + +const baseUrl = process.env.CLARIZEN_BASE_URL ?? "https://api.clarizen.com"; +const apiKey = process.env.CLARIZEN_API_KEY ?? process.env.API_KEY_AW; + +if (!apiKey) { + console.error("Set CLARIZEN_API_KEY or API_KEY_AW in .env"); + process.exit(1); +} + +const clarizen = new Clarizen({ baseUrl, apiToken: apiKey }); + +const session = await clarizen.authentication.getSessionInfo(); +console.log("Session:", session.sessionId, "| User:", session.userId); + +const users = await clarizen.data.entityQuery({ + typeName: "User", + fields: ["Name"], + paging: { limit: 3, from: 0 }, + where: { + leftExpression: { fieldName: "Name" }, + operator: "BeginsWith", + rightExpression: { value: "A" }, + }, +}); + +console.log( + "Users:", + users.entities.map((u) => u.Name), +); diff --git a/examples/session-login.ts b/examples/session-login.ts new file mode 100644 index 0000000..b74d035 --- /dev/null +++ b/examples/session-login.ts @@ -0,0 +1,19 @@ +import "dotenv/config"; +import { Clarizen } from "../src/index.js"; + +const baseUrl = process.env.CLARIZEN_BASE_URL ?? "https://api.clarizen.com"; +const userName = process.env.CLARIZEN_USERNAME; +const password = process.env.CLARIZEN_PASSWORD; + +if (!userName || !password) { + console.error("Set CLARIZEN_USERNAME and CLARIZEN_PASSWORD in .env"); + process.exit(1); +} + +const clarizen = Clarizen.createForLogin(baseUrl); + +const login = await clarizen.loginWithDiscovery({ userName, password }); +console.log("Logged in. Session:", login.sessionId); + +const entities = await clarizen.metadata.listEntities(); +console.log("Entity types count:", Array.isArray(entities) ? entities.length : "(see response)"); diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..1e6d63a --- /dev/null +++ b/package-lock.json @@ -0,0 +1,583 @@ +{ + "name": "@arco/clarizen", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "@arco/clarizen", + "version": "0.1.0", + "devDependencies": { + "@types/node": "^22.15.0", + "dotenv": "^16.5.0", + "tsx": "^4.19.0", + "typescript": "^5.8.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.28.0.tgz", + "integrity": "sha512-lhRUCeuOyJQURhTxl4WkpFTjIsbDayJHih5kZC1giwE+MhIzAb7mEsQMqMf18rHLsrb5qI1tafG20mLxEWcWlA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.28.0.tgz", + "integrity": "sha512-wqh0ByljabXLKHeWXYLqoJ5jKC4XBaw6Hk08OfMrCRd2nP2ZQ5eleDZC41XHyCNgktBGYMbqnrJKq/K/lzPMSQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.28.0.tgz", + "integrity": "sha512-+WzIXQOSaGs33tLEgYPYe/yQHf0WTU0X42Jca3y8NWMbUVhp7rUnw+vAsRC/QiDrdD31IszMrZy+qwPOPjd+rw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.28.0.tgz", + "integrity": "sha512-+VJggoaKhk2VNNqVL7f6S189UzShHC/mR9EE8rDdSkdpN0KflSwWY/gWjDrNxxisg8Fp1ZCD9jLMo4m0OUfeUA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.28.0.tgz", + "integrity": "sha512-0T+A9WZm+bZ84nZBtk1ckYsOvyA3x7e2Acj1KdVfV4/2tdG4fzUp91YHx+GArWLtwqp77pBXVCPn2We7Letr0Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.28.0.tgz", + "integrity": "sha512-fyzLm/DLDl/84OCfp2f/XQ4flmORsjU7VKt8HLjvIXChJoFFOIL6pLJPH4Yhd1n1gGFF9mPwtlN5Wf82DZs+LQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.28.0.tgz", + "integrity": "sha512-l9GeW5UZBT9k9brBYI+0WDffcRxgHQD8ShN2Ur4xWq/NFzUKm3k5lsH4PdaRgb2w7mI9u61nr2gI2mLI27Nh3Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.28.0.tgz", + "integrity": "sha512-BXoQai/A0wPO6Es3yFJ7APCiKGc1tdAEOgeTNy3SsB491S3aHn4S4r3e976eUnPdU+NbdtmBuLncYir2tMU9Nw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.28.0.tgz", + "integrity": "sha512-CjaaREJagqJp7iTaNQjjidaNbCKYcd4IDkzbwwxtSvjI7NZm79qiHc8HqciMddQ6CKvJT6aBd8lO9kN/ZudLlw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.0.tgz", + "integrity": "sha512-RVyzfb3FWsGA55n6WY0MEIEPURL1FcbhFE6BffZEMEekfCzCIMtB5yyDcFnVbTnwk+CLAgTujmV/Lgvih56W+A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.28.0.tgz", + "integrity": "sha512-KBnSTt1kxl9x70q+ydterVdl+Cn0H18ngRMRCEQfrbqdUuntQQ0LoMZv47uB97NljZFzY6HcfqEZ2SAyIUTQBQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.28.0.tgz", + "integrity": "sha512-zpSlUce1mnxzgBADvxKXX5sl8aYQHo2ezvMNI8I0lbblJtp8V4odlm3Yzlj7gPyt3T8ReksE6bK+pT3WD+aJRg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.28.0.tgz", + "integrity": "sha512-2jIfP6mmjkdmeTlsX/9vmdmhBmKADrWqN7zcdtHIeNSCH1SqIoNI63cYsjQR8J+wGa4Y5izRcSHSm8K3QWmk3w==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.28.0.tgz", + "integrity": "sha512-bc0FE9wWeC0WBm49IQMPSPILRocGTQt3j5KPCA8os6VprfuJ7KD+5PzESSrJ6GmPIPJK965ZJHTUlSA6GNYEhg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.28.0.tgz", + "integrity": "sha512-SQPZOwoTTT/HXFXQJG/vBX8sOFagGqvZyXcgLA3NhIqcBv1BJU1d46c0rGcrij2B56Z2rNiSLaZOYW5cUk7yLQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.28.0.tgz", + "integrity": "sha512-SCfR0HN8CEEjnYnySJTd2cw0k9OHB/YFzt5zgJEwa+wL/T/raGWYMBqwDNAC6dqFKmJYZoQBRfHjgwLHGSrn3Q==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.28.0.tgz", + "integrity": "sha512-us0dSb9iFxIi8srnpl931Nvs65it/Jd2a2K3qs7fz2WfGPHqzfzZTfec7oxZJRNPXPnNYZtanmRc4AL/JwVzHQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.28.0.tgz", + "integrity": "sha512-CR/RYotgtCKwtftMwJlUU7xCVNg3lMYZ0RzTmAHSfLCXw3NtZtNpswLEj/Kkf6kEL3Gw+BpOekRX0BYCtklhUw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.28.0.tgz", + "integrity": "sha512-nU1yhmYutL+fQ71Kxnhg8uEOdC0pwEW9entHykTgEbna2pw2dkbFSMeqjjyHZoCmt8SBkOSvV+yNmm94aUrrqw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.28.0.tgz", + "integrity": "sha512-cXb5vApOsRsxsEl4mcZ1XY3D4DzcoMxR/nnc4IyqYs0rTI8ZKmW6kyyg+11Z8yvgMfAEldKzP7AdP64HnSC/6g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.28.0.tgz", + "integrity": "sha512-8wZM2qqtv9UP3mzy7HiGYNH/zjTA355mpeuA+859TyR+e+Tc08IHYpLJuMsfpDJwoLo1ikIJI8jC3GFjnRClzA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.28.0.tgz", + "integrity": "sha512-FLGfyizszcef5C3YtoyQDACyg95+dndv79i2EekILBofh5wpCa1KuBqOWKrEHZg3zrL3t5ouE5jgr94vA+Wb2w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.28.0.tgz", + "integrity": "sha512-1ZgjUoEdHZZl/YlV76TSCz9Hqj9h9YmMGAgAPYd+q4SicWNX3G5GCyx9uhQWSLcbvPW8Ni7lj4gDa1T40akdlw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.28.0.tgz", + "integrity": "sha512-Q9StnDmQ/enxnpxCCLSg0oo4+34B9TdXpuyPeTedN/6+iXBJ4J+zwfQI28u/Jl40nOYAxGoNi7mFP40RUtkmUA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.28.0.tgz", + "integrity": "sha512-zF3ag/gfiCe6U2iczcRzSYJKH1DCI+ByzSENHlM2FcDbEeo5Zd2C86Aq0tKUYAJJ1obRP84ymxIAksZUcdztHA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.28.0.tgz", + "integrity": "sha512-pEl1bO9mfAmIC+tW5btTmrKaujg3zGtUmWNdCw/xs70FBjwAL3o9OEKNHvNmnyylD6ubxUERiEhdsL0xBQ9efw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@types/node": { + "version": "22.19.19", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.19.tgz", + "integrity": "sha512-dyh/xO2Fh5bYrfWaaqGrRQQGkNdmYw6AmaAUvYeUMNTWQtvb796ikLdmTchRmOlOiIJ1TDXfWgVx1QkUlQ6Hew==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/dotenv": { + "version": "16.6.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz", + "integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/esbuild": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.28.0.tgz", + "integrity": "sha512-sNR9MHpXSUV/XB4zmsFKN+QgVG82Cc7+/aaxJ8Adi8hyOac+EXptIp45QBPaVyX3N70664wRbTcLTOemCAnyqw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.28.0", + "@esbuild/android-arm": "0.28.0", + "@esbuild/android-arm64": "0.28.0", + "@esbuild/android-x64": "0.28.0", + "@esbuild/darwin-arm64": "0.28.0", + "@esbuild/darwin-x64": "0.28.0", + "@esbuild/freebsd-arm64": "0.28.0", + "@esbuild/freebsd-x64": "0.28.0", + "@esbuild/linux-arm": "0.28.0", + "@esbuild/linux-arm64": "0.28.0", + "@esbuild/linux-ia32": "0.28.0", + "@esbuild/linux-loong64": "0.28.0", + "@esbuild/linux-mips64el": "0.28.0", + "@esbuild/linux-ppc64": "0.28.0", + "@esbuild/linux-riscv64": "0.28.0", + "@esbuild/linux-s390x": "0.28.0", + "@esbuild/linux-x64": "0.28.0", + "@esbuild/netbsd-arm64": "0.28.0", + "@esbuild/netbsd-x64": "0.28.0", + "@esbuild/openbsd-arm64": "0.28.0", + "@esbuild/openbsd-x64": "0.28.0", + "@esbuild/openharmony-arm64": "0.28.0", + "@esbuild/sunos-x64": "0.28.0", + "@esbuild/win32-arm64": "0.28.0", + "@esbuild/win32-ia32": "0.28.0", + "@esbuild/win32-x64": "0.28.0" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/tsx": { + "version": "4.22.4", + "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.22.4.tgz", + "integrity": "sha512-X8EX+XV4QR5xCsrgxaED954zTDfY8KqlDtskKEL0cHhyS/P8b4IFOvGDQpsC9Q1XnLq915wEfwwY/zzskCtmhg==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "~0.28.0" + }, + "bin": { + "tsx": "dist/cli.mjs" + }, + "engines": { + "node": ">=18.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true, + "license": "MIT" + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..98aa776 --- /dev/null +++ b/package.json @@ -0,0 +1,41 @@ +{ + "name": "@arco/clarizen-lib", + "version": "0.1.0", + "description": "TypeScript client for Clarizen / Planview Adaptive Work REST API V2.0", + "type": "module", + "main": "./dist/index.js", + "types": "./dist/index.d.ts", + "files": [ + "dist", + "README.md" + ], + "exports": { + ".": { + "types": "./dist/index.d.ts", + "import": "./dist/index.js" + }, + "./metadata": { + "types": "./dist/generated/metadata-types.d.ts", + "import": "./dist/generated/metadata-types.js" + } + }, + "scripts": { + "build": "tsc", + "scrape": "tsx scripts/scrape-api.ts", + "scrape:types": "python3 scripts/scrape-types.py", + "generate:types": "python3 scripts/generate-api-types.py", + "scrape:metadata": "tsx scripts/scrape-metadata.ts", + "generate:metadata": "tsx scripts/scrape-metadata.ts", + "example:api-key": "tsx examples/api-key.ts", + "example:session": "tsx examples/session-login.ts" + }, + "devDependencies": { + "@types/node": "^22.15.0", + "dotenv": "^16.5.0", + "tsx": "^4.19.0", + "typescript": "^5.8.0" + }, + "engines": { + "node": ">=18" + } +} diff --git a/scripts/generate-api-types.py b/scripts/generate-api-types.py new file mode 100644 index 0000000..4ec5832 --- /dev/null +++ b/scripts/generate-api-types.py @@ -0,0 +1,252 @@ +#!/usr/bin/env python3 +"""Generate src/clarizen-api-types.ts from clarizen-schema.json.""" +import json +import re +import sys +from pathlib import Path + +ROOT = Path(__file__).resolve().parents[1] +SCHEMA = ROOT / "src" / "generated" / "clarizen-schema.json" +OUT = ROOT / "src" / "clarizen-api-types.ts" + +ENUMS = { + "Operator": [ + "Equal", "NotEqual", "LessThan", "GreaterThan", "LessThanOrEqual", + "GreaterThanOrEqual", "BeginsWith", "EndsWith", "Contains", "DoesNotContain", + "In", "Like", "InRange", "NotInRange", "NotIn", + ], + "Order": ["Ascending", "Descending"], + "DatePeriod": [ + "ThisWeek", "ThisMonth", "ThisQuarter", "ThisYear", + "NextWeek", "NextMonth", "NextQuarter", "NextYear", + "LastWeek", "LastMonth", "LastQuarter", "LastYear", + ], + "FunctionType": ["Count", "Max", "Min", "Sum", "Avg"], + "LicenseType": [ + "Full", "Limited", "Email", "None", "TeamMember", "Social", "ExternalCollaborator", + ], + "NewsFeedMode": ["Following", "All"], + "TimesheetState": ["UnSubmitted", "PendingApproval", "Approved", "All"], + "ErrorCode": [ + "EntityNotFound", "InvalidArgument", "MissingArgument", "InvalidOperation", + "DuplicateKey", "InvalidField", "InvalidType", "FileNotFound", "VirusCheckFailed", + "Unauthorized", "UnsupportedClient", "General", "Internal", "ValidationRuleError", + "LoginFailure", "SessionTimeout", "Redirect", "InvalidQuery", + "ExecutionThresholdExceeded", "TooManyRequests", + ], + "FieldType": [ + "Boolean", "String", "Integer", "Long", "Double", "DateTime", "Date", + "Entity", "Duration", "Money", + ], + "PresentationType": [ + "Text", "Numeric", "Date", "Time", "Checkbox", "TextArea", "Currency", + "Duration", "ReferenceToObject", "PickList", "Url", "Percent", "Other", + ], + "RecipientType": ["To", "CC"], + "AccessType": ["Public", "Private"], + "TriggerType": [ + "Create", "CreateOrEdit", "Delete", "CreateOrEditWithPreviousValueNotEqual", + ], + "HttpMethod": ["DELETE", "GET", "POST", "PUT"], +} + +STUB_TYPES = { + "ApplyOnMembersResult": "string", + "IFormat": "Record", + "RoleType": "string", +} + +PRIMITIVE_MAP = { + "string": "string", + "boolean": "boolean", + "integer": "number", + "long": "number", + "double": "number", + "datetime": "string", + "date": "string", + "type": "Record", + "json object": "Record", + "object": "JsonValue", + "entityid": "EntityId", +} + + +def pascal(name: str) -> str: + if not name: + return name + if name[0].isupper(): + return name.replace(" ", "") + return name[0].upper() + name[1:] + + +ARRAY_PROP_NAMES = frozenset({ + "fields", "groupby", "orders", "relations", "aggregations", + "feeditemoptions", "workitems", "validstates", +}) + + +def ts_prop_type(prop: dict) -> str: + pname = prop.get("name", "").rstrip("*").lower() + href = prop.get("typeHref") or "" + if href: + tail = href.rstrip("/").split("/")[-1] + tail = pascal(tail) + if tail in ("ListOf_String", "Array_String"): + return "string[]" + if pname in ARRAY_PROP_NAMES or tail == "FieldAggregation": + if tail == "FieldAggregation": + return "FieldAggregation[]" + if tail == "FieldDescription": + return "FieldDescription[]" + if tail == "RelationDescription": + return "RelationDescription[]" + if tail == "OrderBy": + return "OrderBy[]" + if tail == "Relation": + return "Relation[]" + return f"{tail}[]" + return tail + raw = prop.get("type", "JsonValue").lower() + raw = re.sub(r"\(.*\)", "", raw).strip() + if raw.endswith("[]"): + inner = PRIMITIVE_MAP.get(raw[:-2], pascal(raw[:-2])) + return f"{inner}[]" + return PRIMITIVE_MAP.get(raw, "JsonValue") + + +def emit_enum(name: str, values: list[str]) -> str: + lines = [f"export type {name} ="] + for v in values: + lines.append(f' | "{v}"') + lines[-1] = lines[-1] + ";" + return "\n".join(lines) + + +def prop_optional(prop_name: str) -> str: + return "" if prop_name.endswith("*") else "?" + + +def clean_prop_name(prop_name: str) -> str: + return prop_name.rstrip("*") + + +def emit_interface(name: str, variant: dict) -> str: + props = variant.get("properties", []) + if not props and "(enum)" in variant.get("variant", ""): + return "" + lines = [f"export interface {name} {{"] + for p in props: + pname = clean_prop_name(p["name"]) + lines.append(f" {pname}{prop_optional(p['name'])}: {ts_prop_type(p)};") + lines.append("}") + return "\n".join(lines) + + +def main(): + data = json.loads(SCHEMA.read_text()) + parsed = data["parsed"] + + out: list[str] = [ + "// Auto-generated from Clarizen REST API V2.0 type docs. Run: npm run generate:types", + 'import type { JsonValue } from "./types.js";', + "", + "export type EntityId = string;", + "", + ] + + for enum_name, values in ENUMS.items(): + out.append(emit_enum(enum_name, values)) + out.append("") + + # Condition union (manual structure from variants) + out.append("export interface AndCondition { and: Condition[]; }") + out.append("export interface OrCondition { or: Condition[]; }") + out.append("export interface NotCondition { not: Condition; }") + out.append("export interface CompareCondition {") + out.append(" _type?: \"Compare\";") + out.append(" leftExpression: Expression;") + out.append(" operator: ComparisonOperator;") + out.append(" rightExpression: Expression;") + out.append("}") + out.append("export interface CzqlCondition {") + out.append(" text: string;") + out.append(" parameters?: Parameters;") + out.append("}") + out.append( + "export type Condition = AndCondition | OrCondition | NotCondition | CompareCondition | CzqlCondition;" + ) + out.append("") + + # Expression union + out.append("export interface FieldExpression { fieldName: string; }") + out.append("export interface ConstantExpression { value: JsonValue; }") + out.append("export interface ConstantListExpression { values: JsonValue[]; }") + out.append("export interface QueryExpression { query: Query; }") + out.append("export interface PredefinedDateRangeExpression {") + out.append(" value?: DatePeriod;") + out.append(" dateRangeValue?: DatePeriod;") + out.append("}") + out.append( + "export type Expression = FieldExpression | ConstantExpression | ConstantListExpression | QueryExpression | PredefinedDateRangeExpression;" + ) + out.append("") + + # Single-variant interfaces from schema + skip = { + "Condition", "Expression", "Operator", "Order", "Query", + "ListOf_String", "Array_String", "EntityId", + } + for type_name, stub in STUB_TYPES.items(): + out.append(f"export type {type_name} = {stub};") + out.append("") + + for type_name in sorted(parsed.keys()): + if type_name in skip or type_name in STUB_TYPES: + continue + info = parsed[type_name] + if len(info["variants"]) != 1: + continue + v = info["variants"][0] + if "(enum)" in v.get("variant", ""): + continue + iface = emit_interface(type_name, v) + if iface: + out.append(iface) + out.append("") + + # Query variants + query_info = parsed.get("Query", {}) + query_names: list[str] = [] + for v in query_info.get("variants", []): + variant_key = v["variant"] + iface_name = pascal(variant_key) + if iface_name == "CZQLQuery": + iface_name = "CzqlQuery" + props = v.get("properties", []) + lines = [f"export interface {iface_name} {{"] + for p in props: + pname = clean_prop_name(p["name"]) + lines.append(f" {pname}{prop_optional(p['name'])}: {ts_prop_type(p)};") + lines.append("}") + out.append("\n".join(lines)) + out.append("") + query_names.append(iface_name) + + out.append(f"export type Query = {' | '.join(query_names)};") + out.append("") + + # Shared query body (entityQuery variant) for EntityQuery operation + out.append("export type EntityQueryBody = EntityQuery;") + out.append("") + + out.append("export type ComparisonOperator = Operator;") + out.append("export type SortOrder = Order;") + out.append("export type ConditionParameters = Parameters;") + + text = "\n".join(out) + "\n" + OUT.write_text(text) + print(f"Wrote {OUT} ({len(text)} bytes)") + + +if __name__ == "__main__": + main() diff --git a/scripts/scrape-api.ts b/scripts/scrape-api.ts new file mode 100644 index 0000000..f6ec52b --- /dev/null +++ b/scripts/scrape-api.ts @@ -0,0 +1,81 @@ +/** + * Regenerates src/endpoints.ts from the live Clarizen API docs. + * Requires CLARIZEN_API_KEY (or API_KEY_AW) in .env for Accept: text/html. + */ +import { writeFileSync } from "node:fs"; +import { resolve } from "node:path"; + +const baseUrl = process.env.CLARIZEN_BASE_URL ?? "https://api.clarizen.com"; +const apiKey = process.env.CLARIZEN_API_KEY ?? process.env.API_KEY_AW; + +if (!apiKey) { + console.error("Set CLARIZEN_API_KEY or API_KEY_AW"); + process.exit(1); +} + +const indexRes = await fetch(`${baseUrl}/V2.0/services/`, { + headers: { + Authorization: `ApiKey ${apiKey}`, + Accept: "text/html", + }, +}); + +const html = await indexRes.text(); +const linkRe = /href="(\/V2\.0\/services\/[^"]+)"/g; +const paths = [...new Set([...html.matchAll(linkRe)].map((m) => m[1]))].filter( + (p) => !p.endsWith("/objects"), +); + +const endpoints: Array<{ + namespace: string; + operation: string; + path: string; + httpMethods: string[]; + description: string; +}> = []; + +for (const docPath of paths) { + const res = await fetch(`${baseUrl}${docPath}`, { + headers: { + Authorization: `ApiKey ${apiKey}`, + Accept: "text/html", + }, + }); + const page = await res.text(); + const parts = docPath.split("/"); + const namespace = parts[3] ?? ""; + const operation = parts[4] ?? ""; + const pathMatch = page.match(/([^<]+)<\/samp>/); + const methodMatch = page.match( + /
HTTP Method<\/dt>\s*
([^<]+)<\/code>/, + ); + const descMatch = page.match(/
Description<\/dt>\s*
([^<]+)/); + + endpoints.push({ + namespace, + operation, + path: pathMatch?.[1] ?? docPath, + httpMethods: (methodMatch?.[1] ?? "POST") + .split(",") + .map((m) => m.trim().toUpperCase()), + description: (descMatch?.[1] ?? "") + .replace(/\u00a0/g, " ") + .trim(), + }); +} + +const namespaces = [...new Set(endpoints.map((e) => e.namespace))]; + +const out = `import type { EndpointDefinition } from "./types.js"; + +/** Auto-generated from ${baseUrl}/V2.0/services/ — run: npm run scrape */ +export const ENDPOINTS: EndpointDefinition[] = ${JSON.stringify(endpoints, null, 2)}; + +export const NAMESPACES = ${JSON.stringify(namespaces, null, 2)} as const; + +export type ClarizenNamespace = (typeof NAMESPACES)[number]; +`; + +const target = resolve(import.meta.dirname, "../src/endpoints.ts"); +writeFileSync(target, out); +console.log(`Wrote ${endpoints.length} endpoints to ${target}`); diff --git a/scripts/scrape-metadata.ts b/scripts/scrape-metadata.ts new file mode 100644 index 0000000..cd38b2a --- /dev/null +++ b/scripts/scrape-metadata.ts @@ -0,0 +1,50 @@ +/** + * Fetches filtered org metadata and writes src/generated/metadata-catalog.json + * and src/generated/metadata-types.ts. + * + * Requires CLARIZEN_API_KEY or CLARIZEN_USERNAME + CLARIZEN_PASSWORD in .env + */ +import "dotenv/config"; +import { mkdirSync, writeFileSync } from "node:fs"; +import { resolve } from "node:path"; +import { Clarizen } from "../src/clarizen.js"; +import { generateMetadataTypesFile } from "../src/metadata/generate-types.js"; + +const baseUrl = process.env.CLARIZEN_BASE_URL ?? "https://api.clarizen.com"; +const apiKey = process.env.CLARIZEN_API_KEY ?? process.env.API_KEY_AW; +const userName = process.env.CLARIZEN_USERNAME; +const password = process.env.CLARIZEN_PASSWORD; + +const outDir = resolve(import.meta.dirname, "../src/generated"); +const catalogPath = resolve(outDir, "metadata-catalog.json"); +const typesPath = resolve(outDir, "metadata-types.ts"); + +async function createClient(): Promise { + if (apiKey) { + return new Clarizen({ baseUrl, apiToken: apiKey }); + } + if (userName && password) { + const clarizen = Clarizen.createForLogin(baseUrl); + await clarizen.loginWithDiscovery({ userName, password }); + return clarizen; + } + console.error( + "Set CLARIZEN_API_KEY or CLARIZEN_USERNAME + CLARIZEN_PASSWORD in .env", + ); + process.exit(1); +} + +const clarizen = await createClient(); + +console.log("Fetching metadata catalog..."); +const catalog = await clarizen.metadata.fetchCatalog({ + onProgress: (msg) => console.log(msg), +}); + +mkdirSync(outDir, { recursive: true }); +writeFileSync(catalogPath, `${JSON.stringify(catalog, null, 2)}\n`); +writeFileSync(typesPath, generateMetadataTypesFile(catalog)); + +console.log( + `Wrote ${catalog.entities.length} entities to:\n ${catalogPath}\n ${typesPath}`, +); diff --git a/scripts/scrape-types.py b/scripts/scrape-types.py new file mode 100644 index 0000000..fcb5559 --- /dev/null +++ b/scripts/scrape-types.py @@ -0,0 +1,166 @@ +#!/usr/bin/env python3 +"""Discover all Clarizen API types by crawling services + types docs.""" +import json +import os +import re +import subprocess +import sys +from html import unescape +from pathlib import Path +from urllib.parse import urljoin + +ROOT = Path(__file__).resolve().parents[1] + +BASE = os.environ.get("CLARIZEN_BASE_URL", "https://api.clarizen.com") +TOKEN = os.environ.get("CLARIZEN_API_KEY") or os.environ.get("API_KEY_AW") +if not TOKEN: + sys.exit("Set CLARIZEN_API_KEY or API_KEY_AW") + +TYPE_LINK = re.compile(r'href="(/V2\.0/services/types/([^"]+))"', re.I) +SERVICE_LINK = re.compile(r'href="(/V2\.0/services/(?!types)[^"]+)"', re.I) +VARIANT_NAME = re.compile(r"
Type
\s*
\s*([^<]+)", re.I) +PROP_ROW = re.compile( + r"(.*?)\s*(?:)?([^<]+)", + re.I | re.S, +) +ENUM_ROW = re.compile(r"([^<]+)[^<]*", re.I) + + +def fetch(path: str) -> str: + url = urljoin(BASE, path) + r = subprocess.run( + [ + "curl", + "-sL", + "--max-time", + "20", + url, + "-H", + f"Authorization: ApiKey {TOKEN}", + "-H", + "Accept: text/html", + ], + capture_output=True, + text=True, + ) + return r.stdout + + +def normalize_type_name(href_tail: str) -> str: + name = href_tail.split("/")[-1] + if name.lower() in ("object", "string", "integer", "boolean", "json object"): + return name + return name[0].upper() + name[1:] if name else name + + +def parse_type_page(html: str, type_name: str) -> dict: + variants = [] + parts = re.split(r"
Type
", html, flags=re.I) + for part in parts[1:]: + name_m = re.search(r"
\s*([^<]+)", part, re.I) + if not name_m: + continue + variant = unescape(name_m.group(1)).strip() + desc_m = re.search( + r"
Description
\s*
([^<]*)", part, re.I | re.S + ) + description = unescape(desc_m.group(1)).strip() if desc_m else "" + + properties = [] + prop_section = re.search(r"
Properties
(.*?)
", part, re.I | re.S) + if not prop_section: + prop_section = re.search(r"
Properties
(.*)", part, re.I | re.S) + if prop_section: + block = prop_section.group(1) + rows = PROP_ROW.findall(block) + for pname, href, ptype in rows: + clean_name = re.sub(r"<[^>]+>", "", pname) + properties.append( + { + "name": unescape(clean_name).strip(), + "typeHref": href or None, + "type": unescape(re.sub(r"<[^>]+>", "", ptype)).strip(), + } + ) + + enum_values = [] + if re.search(r"
Possible Values
", part, re.I): + ev_block = re.search( + r"
Possible Values
(.*?)
", part, re.I | re.S + ) + if ev_block: + enum_values = [ + unescape(m.group(1)).strip() + for m in re.finditer( + r"([^<]+)", ev_block.group(1), re.I + ) + ] + + variants.append( + { + "variant": variant, + "description": description, + "properties": properties, + "enumValues": enum_values, + } + ) + + return {"name": type_name, "variants": variants} + + +def main(): + seeds = ["/V2.0/services/"] + # all operations from index + index = fetch("/V2.0/services/") + seeds.extend(m.group(1) for m in SERVICE_LINK.finditer(index)) + + discovered_types: set[str] = set() + queue: list[str] = [] + parsed: dict[str, dict] = {} + + def enqueue_type(href: str): + tail = href.split("/types/")[-1] + key = normalize_type_name(tail) + if key.lower() in ("object", "string", "integer", "boolean", "json object"): + return + if key not in discovered_types: + discovered_types.add(key) + queue.append(key) + + for seed in seeds: + html = fetch(seed) if seed != "/V2.0/services/" else index + if seed != "/V2.0/services/": + html = fetch(seed) + for m in TYPE_LINK.finditer(html): + enqueue_type(m.group(1)) + + while queue: + tname = queue.pop(0) + if tname in parsed: + continue + path = f"/V2.0/services/types/{tname}" + html = fetch(path) + if "
Type
" not in html and "
Possible Values
" not in html: + # try lowercase + path = f"/V2.0/services/types/{tname[0].lower()}{tname[1:]}" + html = fetch(path) + info = parse_type_page(html, tname) + parsed[tname] = info + for v in info["variants"]: + for p in v["properties"]: + if p.get("typeHref"): + enqueue_type(p["typeHref"]) + + out = { + "typeCount": len(parsed), + "types": sorted(parsed.keys()), + "parsed": parsed, + } + out_path = ROOT / "src" / "generated" / "clarizen-schema.json" + out_path.parent.mkdir(parents=True, exist_ok=True) + out_path.write_text(json.dumps(out, indent=2), encoding="utf-8") + print(f"Wrote {out_path} ({len(parsed)} types)") + + +if __name__ == "__main__": + main() diff --git a/src/clarizen-api-types.ts b/src/clarizen-api-types.ts new file mode 100644 index 0000000..ee688b0 --- /dev/null +++ b/src/clarizen-api-types.ts @@ -0,0 +1,519 @@ +// Auto-generated from Clarizen REST API V2.0 type docs. Run: npm run generate:types +import type { JsonValue } from "./types.js"; + +export type EntityId = string; + +export type Operator = + | "Equal" + | "NotEqual" + | "LessThan" + | "GreaterThan" + | "LessThanOrEqual" + | "GreaterThanOrEqual" + | "BeginsWith" + | "EndsWith" + | "Contains" + | "DoesNotContain" + | "In" + | "Like" + | "InRange" + | "NotInRange" + | "NotIn"; + +export type Order = + | "Ascending" + | "Descending"; + +export type DatePeriod = + | "ThisWeek" + | "ThisMonth" + | "ThisQuarter" + | "ThisYear" + | "NextWeek" + | "NextMonth" + | "NextQuarter" + | "NextYear" + | "LastWeek" + | "LastMonth" + | "LastQuarter" + | "LastYear"; + +export type FunctionType = + | "Count" + | "Max" + | "Min" + | "Sum" + | "Avg"; + +export type LicenseType = + | "Full" + | "Limited" + | "Email" + | "None" + | "TeamMember" + | "Social" + | "ExternalCollaborator"; + +export type NewsFeedMode = + | "Following" + | "All"; + +export type TimesheetState = + | "UnSubmitted" + | "PendingApproval" + | "Approved" + | "All"; + +export type ErrorCode = + | "EntityNotFound" + | "InvalidArgument" + | "MissingArgument" + | "InvalidOperation" + | "DuplicateKey" + | "InvalidField" + | "InvalidType" + | "FileNotFound" + | "VirusCheckFailed" + | "Unauthorized" + | "UnsupportedClient" + | "General" + | "Internal" + | "ValidationRuleError" + | "LoginFailure" + | "SessionTimeout" + | "Redirect" + | "InvalidQuery" + | "ExecutionThresholdExceeded" + | "TooManyRequests"; + +export type FieldType = + | "Boolean" + | "String" + | "Integer" + | "Long" + | "Double" + | "DateTime" + | "Date" + | "Entity" + | "Duration" + | "Money"; + +export type PresentationType = + | "Text" + | "Numeric" + | "Date" + | "Time" + | "Checkbox" + | "TextArea" + | "Currency" + | "Duration" + | "ReferenceToObject" + | "PickList" + | "Url" + | "Percent" + | "Other"; + +export type RecipientType = + | "To" + | "CC"; + +export type AccessType = + | "Public" + | "Private"; + +export type TriggerType = + | "Create" + | "CreateOrEdit" + | "Delete" + | "CreateOrEditWithPreviousValueNotEqual"; + +export type HttpMethod = + | "DELETE" + | "GET" + | "POST" + | "PUT"; + +export interface AndCondition { and: Condition[]; } +export interface OrCondition { or: Condition[]; } +export interface NotCondition { not: Condition; } +export interface CompareCondition { + _type?: "Compare"; + leftExpression: Expression; + operator: ComparisonOperator; + rightExpression: Expression; +} +export interface CzqlCondition { + text: string; + parameters?: Parameters; +} +export type Condition = AndCondition | OrCondition | NotCondition | CompareCondition | CzqlCondition; + +export interface FieldExpression { fieldName: string; } +export interface ConstantExpression { value: JsonValue; } +export interface ConstantListExpression { values: JsonValue[]; } +export interface QueryExpression { query: Query; } +export interface PredefinedDateRangeExpression { + value?: DatePeriod; + dateRangeValue?: DatePeriod; +} +export type Expression = FieldExpression | ConstantExpression | ConstantListExpression | QueryExpression | PredefinedDateRangeExpression; + +export type ApplyOnMembersResult = string; + +export type IFormat = Record; + +export type RoleType = string; + +export interface Action { + url: string; + method: HttpMethod; + headers?: string; + body?: string; +} + +export interface ApplyOnMembersResultItemStatus { + userGroupId?: EntityId; + userGroupName?: string; + status?: ApplyOnMembersResult; + failureStatusMessage?: FailureStatusMessage; +} + +export interface CalendarException { + id?: EntityId; + name?: string; + isWorkingDay?: boolean; + isAllDay?: boolean; + startHour?: number; + endHour?: number; + exceptionType?: EntityId; + startDate?: DateTime; + endDate?: DateTime; + repeat?: Repeat; +} + +export interface CreateResult { + id?: EntityId; +} + +export interface DateTime { +} + +export interface DayInformation { + isWorkingDay?: boolean; + totalWorkingHours?: number; + startHour?: number; + endHour?: number; +} + +export interface Entity { + id?: EntityId; + objectFields?: Record; +} + +export interface EntityDescription { + typeName?: string; + fields?: FieldDescription[]; + validStates?: string[]; + label?: string; + labelPlural?: string; + parentEntity?: string; + displayField?: string; + disabled?: boolean; + relations?: RelationDescription[]; +} + +export interface EntityRelationsDescription { + typeName?: string; + relations?: RelationDescription[]; +} + +export interface Error { + errorCode?: ErrorCode; + message?: string; + referenceId?: string; +} + +export interface Every { + recurrenceType?: string; + period?: number; +} + +export interface ExceptionDate { + date?: DateTime; + calendarExceptionId?: EntityId; +} + +export interface FailureStatusMessage { + failureMessage?: string; +} + +export interface FieldAggregation { + function?: FunctionType; + fieldName?: string; + alias?: string; +} + +export interface FieldDescription { + name?: string; + type?: FieldType; + presentationType?: PresentationType; + label?: string; + defaultValue?: JsonValue; + system?: boolean; + calculated?: boolean; + nullable?: boolean; + createOnly?: boolean; + updateable?: boolean; + internal?: boolean; + custom?: boolean; + visible?: boolean; + decimalPlaces?: number; + filterable?: boolean; + sortable?: boolean; + format?: IFormat; + maxLength?: number; + flags?: string[]; + restrictedFieldSetName?: string; + manuallySetName?: string; +} + +export interface FieldValue { + fieldName?: string; + value?: JsonValue; +} + +export interface FileInformation { + storage?: Storage; + url?: string; + fileName?: string; + subType?: string; + extendedInfo?: string; +} + +export interface IdentifierMap { + oid?: string; + id?: string; +} + +export interface LicenseConsumption { + licenseTypeLabel?: string; + licenseType?: LicenseType; + assignedLicenses?: number; + activeUsers?: number; + allocatedLicenses?: number; +} + +export interface LoginOptions { + partnerId?: string; + applicationId?: string; +} + +export interface MissingTimesheets { + date?: DateTime; + workingHours?: number; + reportedHours?: number; + missingHours?: number; +} + +export interface OrderBy { + fieldName?: string; + order?: Order; +} + +export interface OrganizationLicenseConsumption { + id?: EntityId; + licenseConsumption?: LicenseConsumption; +} + +export interface Paging { + from?: number; + limit?: number; + hasMore?: boolean; +} + +export interface Parameters { + objectFields?: Record; +} + +export interface PostFeedItem { + latestReplies?: ReplyFeedItem; + pinned?: boolean; + message?: Entity; + likedByMe?: boolean; + relatedEntities?: Entity; + notify?: Entity; + topics?: Entity; + bodyMarkup?: string; + summary?: string; +} + +export interface Recipient { + recipientType?: RecipientType; + user?: EntityId; + eMail?: string; +} + +export interface Relation { + name?: string; + fields?: string[]; + where?: Condition; + orders?: OrderBy[]; + fromLink?: boolean; +} + +export interface RelationDescription { + name?: string; + label?: string; + roleLabel?: string; + readOnly?: boolean; + linkTypeName?: string; + relatedTypeName?: string; + sourceFieldName?: string; +} + +export interface Repeat { + every?: Every; + occurrences?: number; + endBy?: DateTime; +} + +export interface ReplyFeedItem { + message?: Entity; + likedByMe?: boolean; + relatedEntities?: Entity; + notify?: Entity; + topics?: Entity; + bodyMarkup?: string; + summary?: string; +} + +export interface Request { + url?: string; + method?: string; + body?: JsonValue; +} + +export interface Response { + statusCode?: number; + body?: JsonValue; +} + +export interface RetrieveResult { + entity?: Entity; +} + +export interface RoleForResource { + role: RoleType; + resource: EntityId; +} + +export interface EntityFeedQuery { + entityId: EntityId; + fields?: string[]; + feedItemOptions?: string[]; + paging?: Paging; +} + +export interface GroupsQuery { + fields?: string[]; + paging?: Paging; +} + +export interface NewsFeedQuery { + mode?: NewsFeedMode; + fields?: string[]; + feedItemOptions?: string[]; + paging?: Paging; +} + +export interface RepliesQuery { + postId: EntityId; + fields?: string[]; + feedItemOptions?: string[]; + paging?: Paging; +} + +export interface AggregateQuery { + typeName: string; + groupBy?: string[]; + orders?: OrderBy[]; + where?: Condition; + aggregations: FieldAggregation[]; + paging?: Paging; +} + +export interface CzqlQuery { + q?: string; + parameters?: Parameters; + paging?: Paging; +} + +export interface EntityQuery { + typeName: string; + fields?: string[]; + orders?: OrderBy[]; + where?: Condition; + relations?: Relation[]; + deleted?: boolean; + originalExternalID?: boolean; + paging?: Paging; +} + +export interface RelationQuery { + entityId: EntityId; + relationName: string; + fields?: string[]; + orders?: OrderBy[]; + where?: Condition; + relations?: Relation[]; + fromLink?: boolean; + paging?: Paging; +} + +export interface ExpenseQuery { + projectId?: EntityId; + customerId?: EntityId; + typeName: string; + fields?: string[]; + orders?: OrderBy[]; + where?: Condition; + relations?: Relation[]; + deleted?: boolean; + originalExternalID?: boolean; + paging?: Paging; +} + +export interface TimesheetQuery { + projectId?: EntityId; + customerId?: EntityId; + iAmTheApprover?: boolean; + workItems?: EntityId[]; + timesheetState?: TimesheetState; + typeName: string; + fields?: string[]; + orders?: OrderBy[]; + where?: Condition; + relations?: Relation[]; + deleted?: boolean; + originalExternalID?: boolean; + paging?: Paging; +} + +export interface FindUserQuery { + firstName?: string; + lastName?: string; + eMail?: string; + fuzzySearchUserName?: boolean; + includeSuspendedUsers?: boolean; + fields?: string[]; + orders?: OrderBy[]; + paging?: Paging; +} + +export type Query = EntityFeedQuery | GroupsQuery | NewsFeedQuery | RepliesQuery | AggregateQuery | CzqlQuery | EntityQuery | RelationQuery | ExpenseQuery | TimesheetQuery | FindUserQuery; + +export type EntityQueryBody = EntityQuery; + +export type ComparisonOperator = Operator; +export type SortOrder = Order; +export type ConditionParameters = Parameters; diff --git a/src/clarizen.ts b/src/clarizen.ts new file mode 100644 index 0000000..46c862c --- /dev/null +++ b/src/clarizen.ts @@ -0,0 +1,147 @@ +import { NAMESPACES, type ClarizenNamespace } from "./endpoints.js"; +import { HttpClient } from "./http.js"; +import { EntityObjectsService } from "./objects.js"; +import { createMetadataService, type MetadataService } from "./metadata/service.js"; +import { + createNamespaceService, + type NamespaceService, + type OperationCall, +} from "./service.js"; +import type { QueryParamValue } from "./http.js"; +import type { + AuthMode, + EntityQueryParams, + EntityQueryResult, + JsonObject, + LoginParams, + LoginResult, + ServerDefinition, + SessionInfo, +} from "./types.js"; + +export interface ClarizenOptions { + baseUrl?: string; + apiToken?: string; + sessionId?: string; +} + +export interface AuthenticationService { + getServerDefinition: (body?: JsonObject) => Promise; + getSessionInfo: () => Promise; + login: (params: LoginParams) => Promise; + logout: OperationCall; +} + +export interface DataService { + entityQuery: (params: EntityQueryParams) => Promise; + [operation: string]: OperationCall | ((params: EntityQueryParams) => Promise); +} + +export type { MetadataService } from "./metadata/service.js"; + +export class Clarizen { + private readonly http: HttpClient; + + readonly authentication: AuthenticationService; + readonly applications: NamespaceService; + readonly bulk: NamespaceService; + readonly data: DataService; + readonly files: NamespaceService; + readonly metadata: MetadataService; + readonly utils: NamespaceService; + readonly objects: EntityObjectsService; + + constructor(baseUrl: string, apiToken?: string); + constructor(options: ClarizenOptions); + constructor( + baseUrlOrOptions: string | ClarizenOptions, + apiToken?: string, + ) { + const options: ClarizenOptions = + typeof baseUrlOrOptions === "string" + ? { baseUrl: baseUrlOrOptions, apiToken } + : baseUrlOrOptions; + + const baseUrl = (options.baseUrl ?? "https://api.clarizen.com").replace( + /\/$/, + "", + ); + + let auth: AuthMode; + if (options.sessionId) { + auth = { type: "session", sessionId: options.sessionId }; + } else if (options.apiToken) { + auth = { type: "apiKey", token: options.apiToken }; + } else { + auth = { type: "none" }; + } + + this.http = new HttpClient(baseUrl, auth); + + const authBase = createNamespaceService(this.http, "authentication"); + this.authentication = { + getServerDefinition: (body) => + authBase.getServerDefinition(body) as Promise, + getSessionInfo: () => + authBase.getSessionInfo() as Promise, + logout: authBase.logout, + login: async (params) => { + const result = (await authBase.login( + params as unknown as JsonObject, + )) as LoginResult; + this.useSession(result.sessionId); + return result; + }, + }; + + this.applications = createNamespaceService(this.http, "applications"); + this.bulk = createNamespaceService(this.http, "bulk"); + this.files = createNamespaceService(this.http, "files"); + this.metadata = createMetadataService(this.http); + this.utils = createNamespaceService(this.http, "utils"); + this.objects = new EntityObjectsService(this.http); + + this.data = createNamespaceService(this.http, "data") as unknown as DataService; + } + + get baseUrl(): string { + return this.http.getBaseUrl(); + } + + async loginWithDiscovery(params: LoginParams): Promise { + const definition = await this.authentication.getServerDefinition( + params as unknown as JsonObject, + ); + this.http.setBaseUrl(definition.serverLocation); + return this.authentication.login(params); + } + + useSession(sessionId: string): void { + this.http.setAuth({ type: "session", sessionId }); + } + + useApiKey(apiToken: string): void { + this.http.setAuth({ type: "apiKey", token: apiToken }); + } + + get sessionId(): string | undefined { + const auth = this.http.getAuth(); + return auth.type === "session" ? auth.sessionId : undefined; + } + + call( + namespace: ClarizenNamespace, + operation: string, + body?: Record, + query?: Record, + ): Promise { + const service = this[namespace] as NamespaceService; + return service(operation, body as JsonObject, query) as Promise; + } + + static createForLogin(baseUrl = "https://api.clarizen.com"): Clarizen { + return new Clarizen({ baseUrl }); + } + + static readonly namespaces = NAMESPACES; +} diff --git a/src/endpoints.ts b/src/endpoints.ts new file mode 100644 index 0000000..549aa80 --- /dev/null +++ b/src/endpoints.ts @@ -0,0 +1,68 @@ +import type { EndpointDefinition } from "./types.js"; + +export const ENDPOINTS: EndpointDefinition[] = [ + { namespace: "applications", operation: "GetApplicationStatus", path: "/V2.0/services/applications/getApplicationStatus", httpMethods: ["GET"], description: "Get application status" }, + { namespace: "applications", operation: "InstallApplication", path: "/V2.0/services/applications/installApplication", httpMethods: ["POST"], description: "Install application" }, + { namespace: "authentication", operation: "GetServerDefinition", path: "/V2.0/services/authentication/getServerDefinition", httpMethods: ["POST"], description: "Returns the URL where your organization API is located" }, + { namespace: "authentication", operation: "GetSessionInfo", path: "/V2.0/services/authentication/getSessionInfo", httpMethods: ["GET", "POST"], description: "Returns information about the current session" }, + { namespace: "authentication", operation: "Login", path: "/V2.0/services/authentication/login", httpMethods: ["POST"], description: "Login to the API" }, + { namespace: "authentication", operation: "Logout", path: "/V2.0/services/authentication/logout", httpMethods: ["GET"], description: "Terminate the current API session" }, + { namespace: "bulk", operation: "Execute", path: "/V2.0/services/bulk/execute", httpMethods: ["POST"], description: "Execute several API calls in a single round trip" }, + { namespace: "data", operation: "AggregateQuery", path: "/V2.0/services/data/aggregateQuery", httpMethods: ["GET", "POST"], description: "Query and aggregate results" }, + { namespace: "data", operation: "ApplyOnMembers", path: "/V2.0/services/data/applyOnMembers", httpMethods: ["POST"], description: "Apply settings from User Group to members" }, + { namespace: "data", operation: "ChangeState", path: "/V2.0/services/data/changeState", httpMethods: ["POST"], description: "Change the state of an object" }, + { namespace: "data", operation: "CloseFiscalMonth", path: "/V2.0/services/data/closeFiscalMonth", httpMethods: ["POST"], description: "Close the fiscal month" }, + { namespace: "data", operation: "CountQuery", path: "/V2.0/services/data/countQuery", httpMethods: ["GET", "POST"], description: "Query and return result count" }, + { namespace: "data", operation: "CreateAndRetrieve", path: "/V2.0/services/data/createAndRetrieve", httpMethods: ["POST"], description: "Create and immediately retrieve an entity" }, + { namespace: "data", operation: "CreateDiscussion", path: "/V2.0/services/data/createDiscussion", httpMethods: ["POST"], description: "Create a discussion message" }, + { namespace: "data", operation: "CreateFromTemplate", path: "/V2.0/services/data/createFromTemplate", httpMethods: ["POST"], description: "Create an entity from a template" }, + { namespace: "data", operation: "CreateMultiply", path: "/V2.0/services/data/createMultiply", httpMethods: ["PUT"], description: "Create multiple entities" }, + { namespace: "data", operation: "DeletePermissions", path: "/V2.0/services/data/deletePermissions", httpMethods: ["POST"], description: "Delete permission on entity" }, + { namespace: "data", operation: "EntityFeedQuery", path: "/V2.0/services/data/entityFeedQuery", httpMethods: ["GET", "POST"], description: "Return the social feed of an object" }, + { namespace: "data", operation: "EntityQuery", path: "/V2.0/services/data/entityQuery", httpMethods: ["GET", "POST"], description: "Retrieve entities by criteria" }, + { namespace: "data", operation: "ExecuteCustomAction", path: "/V2.0/services/data/executeCustomAction", httpMethods: ["GET", "POST"], description: "Execute custom action" }, + { namespace: "data", operation: "ExpenseQuery", path: "/V2.0/services/data/expenseQuery", httpMethods: ["POST"], description: "Retrieve expenses for a project or customer" }, + { namespace: "data", operation: "FindUserQuery", path: "/V2.0/services/data/findUserQuery", httpMethods: ["POST"], description: "Find a user by criteria" }, + { namespace: "data", operation: "GetCalendarExceptions", path: "/V2.0/services/data/getCalendarExceptions", httpMethods: ["GET"], description: "Retrieve calendar exceptions" }, + { namespace: "data", operation: "GetCalendarInfo", path: "/V2.0/services/data/getCalendarInfo", httpMethods: ["GET"], description: "Calendar definitions info" }, + { namespace: "data", operation: "GetTemplateDescriptions", path: "/V2.0/services/data/getTemplateDescriptions", httpMethods: ["GET"], description: "List templates for an entity type" }, + { namespace: "data", operation: "GroupsQuery", path: "/V2.0/services/data/groupsQuery", httpMethods: ["GET", "POST"], description: "List groups the current user belongs to" }, + { namespace: "data", operation: "LicenseConsumption", path: "/V2.0/services/data/licenseConsumption", httpMethods: ["GET", "POST"], description: "License consumption per organization" }, + { namespace: "data", operation: "Lifecycle", path: "/V2.0/services/data/lifecycle", httpMethods: ["POST"], description: "Lifecycle operations (Activate, Cancel, etc.)" }, + { namespace: "data", operation: "MissingTimesheets", path: "/V2.0/services/data/missingTimesheets", httpMethods: ["GET"], description: "Missing timesheets information" }, + { namespace: "data", operation: "NewsFeedQuery", path: "/V2.0/services/data/newsFeedQuery", httpMethods: ["GET", "POST"], description: "Current user news feed" }, + { namespace: "data", operation: "ObjectIds", path: "/V2.0/services/data/objectIds", httpMethods: ["POST"], description: "Resolve object IDs" }, + { namespace: "data", operation: "Query", path: "/V2.0/services/data/query", httpMethods: ["GET", "POST"], description: "Execute a CZQL query" }, + { namespace: "data", operation: "RelationQuery", path: "/V2.0/services/data/relationQuery", httpMethods: ["GET", "POST"], description: "Related entities from a relation" }, + { namespace: "data", operation: "ReopenFiscalMonth", path: "/V2.0/services/data/reopenFiscalMonth", httpMethods: ["POST"], description: "Reopen fiscal month" }, + { namespace: "data", operation: "RepliesQuery", path: "/V2.0/services/data/repliesQuery", httpMethods: ["GET", "POST"], description: "Reply feed of a discussion" }, + { namespace: "data", operation: "RetrieveMultiple", path: "/V2.0/services/data/retrieveMultiple", httpMethods: ["POST"], description: "Retrieve multiple entities of the same type" }, + { namespace: "data", operation: "Search", path: "/V2.0/services/data/search", httpMethods: ["GET"], description: "Text search in entity types" }, + { namespace: "data", operation: "SetPermissions", path: "/V2.0/services/data/setPermissions", httpMethods: ["POST"], description: "Create or update permission on entity" }, + { namespace: "data", operation: "TimesheetQuery", path: "/V2.0/services/data/timesheetQuery", httpMethods: ["GET", "POST"], description: "Retrieve timesheets" }, + { namespace: "data", operation: "Upsert", path: "/V2.0/services/data/upsert", httpMethods: ["POST"], description: "Create or update an entity" }, + { namespace: "files", operation: "Download", path: "/V2.0/services/files/download", httpMethods: ["GET"], description: "Download file attached to a document" }, + { namespace: "files", operation: "GetUploadUrl", path: "/V2.0/services/files/getUploadUrl", httpMethods: ["GET"], description: "Get URL for uploading files" }, + { namespace: "files", operation: "UpdateImage", path: "/V2.0/services/files/updateImage", httpMethods: ["POST"], description: "Set or reset object image" }, + { namespace: "files", operation: "Upload", path: "/V2.0/services/files/upload", httpMethods: ["POST"], description: "Upload file to a document" }, + { namespace: "metadata", operation: "DescribeEntities", path: "/V2.0/services/metadata/describeEntities", httpMethods: ["GET"], description: "Entity type fields, relations and states" }, + { namespace: "metadata", operation: "DescribeEntityRelations", path: "/V2.0/services/metadata/describeEntityRelations", httpMethods: ["POST"], description: "Describe relation between entities" }, + { namespace: "metadata", operation: "DescribeMetadata", path: "/V2.0/services/metadata/describeMetadata", httpMethods: ["GET"], description: "Entity types in your organization" }, + { namespace: "metadata", operation: "GetSystemSettingsValues", path: "/V2.0/services/metadata/getSystemSettingsValues", httpMethods: ["GET"], description: "Retrieve system settings values" }, + { namespace: "metadata", operation: "ListEntities", path: "/V2.0/services/metadata/listEntities", httpMethods: ["GET"], description: "List entity types for your organization" }, + { namespace: "metadata", operation: "SetSystemSettingsValues", path: "/V2.0/services/metadata/setSystemSettingsValues", httpMethods: ["POST"], description: "Save system settings values" }, + { namespace: "utils", operation: "AppLogin", path: "/V2.0/services/utils/appLogin", httpMethods: ["GET"], description: "Convert API session to web application session" }, + { namespace: "utils", operation: "SendEMail", path: "/V2.0/services/utils/sendEMail", httpMethods: ["POST"], description: "Send email attached to an object" }, +]; + +export const NAMESPACES = [ + "applications", + "authentication", + "bulk", + "data", + "files", + "metadata", + "utils", +] as const; + +export type ClarizenNamespace = (typeof NAMESPACES)[number]; diff --git a/src/errors.ts b/src/errors.ts new file mode 100644 index 0000000..489dafd --- /dev/null +++ b/src/errors.ts @@ -0,0 +1,19 @@ +import type { ClarizenErrorBody } from "./types.js"; + +export class ClarizenApiError extends Error { + readonly errorCode: string; + readonly referenceId?: string; + readonly status: number; + + constructor(status: number, body: ClarizenErrorBody) { + super(body.message); + this.name = "ClarizenApiError"; + this.status = status; + this.errorCode = body.errorCode; + this.referenceId = body.referenceId; + } + + isSessionTimeout(): boolean { + return this.errorCode === "SessionTimeout"; + } +} diff --git a/src/generated/clarizen-schema.json b/src/generated/clarizen-schema.json new file mode 100644 index 0000000..43fe6b5 --- /dev/null +++ b/src/generated/clarizen-schema.json @@ -0,0 +1,1979 @@ +{ + "typeCount": 60, + "types": [ + "AccessType", + "Action", + "ApplyOnMembersResult", + "ApplyOnMembersResultItemStatus", + "Array_String", + "CalendarException", + "Condition", + "CreateResult", + "DatePeriod", + "DateTime", + "Day", + "DayInformation", + "Entity", + "EntityDescription", + "EntityId", + "EntityRelationsDescription", + "Error", + "ErrorCode", + "Every", + "ExceptionDate", + "Expression", + "FailureStatusMessage", + "FieldAggregation", + "FieldDescription", + "FieldType", + "FieldValue", + "FileInformation", + "FunctionType", + "HttpMethod", + "IFormat", + "IdentifierMap", + "LicenseConsumption", + "LicenseType", + "ListOf_String", + "LoginOptions", + "MissingTimesheets", + "NewsFeedMode", + "Operator", + "Order", + "OrderBy", + "OrganizationLicenseConsumption", + "Paging", + "Parameters", + "PostFeedItem", + "PresentationType", + "Query", + "Recipient", + "RecipientType", + "Relation", + "RelationDescription", + "Repeat", + "ReplyFeedItem", + "Request", + "Response", + "RetrieveResult", + "RoleForResource", + "RoleType", + "Storage", + "TimesheetState", + "TriggerType" + ], + "parsed": { + "LoginOptions": { + "name": "LoginOptions", + "variants": [ + { + "variant": "loginOptions", + "description": "", + "properties": [ + { + "name": "partnerId", + "typeHref": null, + "type": "string" + }, + { + "name": "applicationId", + "typeHref": null, + "type": "string" + } + ], + "enumValues": [] + } + ] + }, + "Error": { + "name": "Error", + "variants": [ + { + "variant": "error", + "description": "", + "properties": [ + { + "name": "errorCode", + "typeHref": "/V2.0/services/types/ErrorCode", + "type": "errorCode" + }, + { + "name": "message", + "typeHref": null, + "type": "string" + }, + { + "name": "referenceId", + "typeHref": null, + "type": "string" + } + ], + "enumValues": [] + } + ] + }, + "FieldValue": { + "name": "FieldValue", + "variants": [ + { + "variant": "fieldValue", + "description": "", + "properties": [ + { + "name": "fieldName", + "typeHref": null, + "type": "string" + }, + { + "name": "value", + "typeHref": null, + "type": "object" + } + ], + "enumValues": [] + } + ] + }, + "LicenseType": { + "name": "LicenseType", + "variants": [ + { + "variant": "licenseType (enum)", + "description": "", + "properties": [], + "enumValues": [] + } + ] + }, + "ListOf_String": { + "name": "ListOf_String", + "variants": [ + { + "variant": "string[]", + "description": "", + "properties": [], + "enumValues": [] + } + ] + }, + "OrderBy": { + "name": "OrderBy", + "variants": [ + { + "variant": "orderBy", + "description": "", + "properties": [ + { + "name": "fieldName", + "typeHref": null, + "type": "string" + }, + { + "name": "order", + "typeHref": "/V2.0/services/types/Order", + "type": "order" + } + ], + "enumValues": [] + } + ] + }, + "Condition": { + "name": "Condition", + "variants": [ + { + "variant": "and", + "description": "Performs a logical AND between all conditions", + "properties": [ + { + "name": "and", + "typeHref": "/V2.0/services/types/condition", + "type": "condition" + } + ], + "enumValues": [] + }, + { + "variant": "or", + "description": "Performs a logical OR between all conditions", + "properties": [ + { + "name": "or", + "typeHref": "/V2.0/services/types/condition", + "type": "condition" + } + ], + "enumValues": [] + }, + { + "variant": "not", + "description": "Perform a logcial NOT on a condition", + "properties": [ + { + "name": "not", + "typeHref": "/V2.0/services/types/Condition", + "type": "condition" + } + ], + "enumValues": [] + }, + { + "variant": "compare", + "description": "Compare two expressions", + "properties": [ + { + "name": "leftExpression", + "typeHref": "/V2.0/services/types/Expression", + "type": "expression" + }, + { + "name": "operator", + "typeHref": "/V2.0/services/types/Operator", + "type": "operator" + }, + { + "name": "rightExpression", + "typeHref": "/V2.0/services/types/Expression", + "type": "expression" + } + ], + "enumValues": [] + }, + { + "variant": "cZQLCondition", + "description": "Provide a where condition using CZQL", + "properties": [ + { + "name": "text", + "typeHref": null, + "type": "string" + }, + { + "name": "parameters", + "typeHref": "/V2.0/services/types/Parameters", + "type": "parameters" + } + ], + "enumValues": [] + } + ] + }, + "FieldAggregation": { + "name": "FieldAggregation", + "variants": [ + { + "variant": "fieldAggregation", + "description": "Define an aggregation to perform in an aggregate query", + "properties": [ + { + "name": "function", + "typeHref": "/V2.0/services/types/FunctionType", + "type": "functionType" + }, + { + "name": "fieldName", + "typeHref": null, + "type": "string" + }, + { + "name": "alias", + "typeHref": null, + "type": "string" + } + ], + "enumValues": [] + } + ] + }, + "Paging": { + "name": "Paging", + "variants": [ + { + "variant": "paging", + "description": "Paging information for a query", + "properties": [ + { + "name": "from", + "typeHref": null, + "type": "integer" + }, + { + "name": "limit", + "typeHref": null, + "type": "integer" + }, + { + "name": "hasMore", + "typeHref": null, + "type": "boolean" + } + ], + "enumValues": [] + } + ] + }, + "Entity": { + "name": "Entity", + "variants": [ + { + "variant": "entity", + "description": "", + "properties": [ + { + "name": "id", + "typeHref": "/V2.0/services/types/EntityId", + "type": "entityId" + }, + { + "name": "objectFields", + "typeHref": null, + "type": "type" + } + ], + "enumValues": [] + } + ] + }, + "EntityId": { + "name": "EntityId", + "variants": [ + { + "variant": "entityId", + "description": "Represents the unique Id of an entity in Clarizen", + "properties": [], + "enumValues": [] + } + ] + }, + "ApplyOnMembersResultItemStatus": { + "name": "ApplyOnMembersResultItemStatus", + "variants": [ + { + "variant": "applyOnMembersResultItemStatus", + "description": "", + "properties": [ + { + "name": "userGroupId", + "typeHref": "/V2.0/services/types/EntityId", + "type": "entityId" + }, + { + "name": "userGroupName", + "typeHref": null, + "type": "string" + }, + { + "name": "status", + "typeHref": "/V2.0/services/types/ApplyOnMembersResult", + "type": "applyOnMembersResult" + }, + { + "name": "failureStatusMessage", + "typeHref": "/V2.0/services/types/FailureStatusMessage", + "type": "failureStatusMessage" + } + ], + "enumValues": [] + } + ] + }, + "DateTime": { + "name": "DateTime", + "variants": [ + { + "variant": "dateTime", + "description": "", + "properties": [], + "enumValues": [] + } + ] + }, + "Query": { + "name": "Query", + "variants": [ + { + "variant": "entityFeedQuery", + "description": "Returns the social feed of an object", + "properties": [ + { + "name": "entityId*", + "typeHref": "/V2.0/services/types/EntityId", + "type": "entityId" + }, + { + "name": "fields", + "typeHref": "/V2.0/services/types/ListOf_String", + "type": "string[]" + }, + { + "name": "feedItemOptions", + "typeHref": "/V2.0/services/types/ListOf_String", + "type": "string[]" + }, + { + "name": "paging", + "typeHref": "/V2.0/services/types/Paging", + "type": "paging" + } + ], + "enumValues": [] + }, + { + "variant": "groupsQuery", + "description": "Returns the list of groups the current user is a member of", + "properties": [ + { + "name": "fields", + "typeHref": "/V2.0/services/types/ListOf_String", + "type": "string[]" + }, + { + "name": "paging", + "typeHref": "/V2.0/services/types/Paging", + "type": "paging" + } + ], + "enumValues": [] + }, + { + "variant": "newsFeedQuery", + "description": "Returns the current user news feed", + "properties": [ + { + "name": "mode", + "typeHref": "/V2.0/services/types/NewsFeedMode", + "type": "newsFeedMode" + }, + { + "name": "fields", + "typeHref": "/V2.0/services/types/ListOf_String", + "type": "string[]" + }, + { + "name": "feedItemOptions", + "typeHref": "/V2.0/services/types/ListOf_String", + "type": "string[]" + }, + { + "name": "paging", + "typeHref": "/V2.0/services/types/Paging", + "type": "paging" + } + ], + "enumValues": [] + }, + { + "variant": "repliesQuery", + "description": "Retrieves the reply feed of a discussion", + "properties": [ + { + "name": "postId*", + "typeHref": "/V2.0/services/types/EntityId", + "type": "entityId" + }, + { + "name": "fields", + "typeHref": "/V2.0/services/types/ListOf_String", + "type": "string[]" + }, + { + "name": "feedItemOptions", + "typeHref": "/V2.0/services/types/ListOf_String", + "type": "string[]" + }, + { + "name": "paging", + "typeHref": "/V2.0/services/types/Paging", + "type": "paging" + } + ], + "enumValues": [] + }, + { + "variant": "aggregateQuery", + "description": "Performs a query and aggreagtes (and optionally groups) the results using one of the grouping functions (e.g. Count, Sum, etc.)", + "properties": [ + { + "name": "typeName*", + "typeHref": null, + "type": "string" + }, + { + "name": "groupBy", + "typeHref": "/V2.0/services/types/ListOf_String", + "type": "string[]" + }, + { + "name": "orders", + "typeHref": "/V2.0/services/types/OrderBy", + "type": "orderBy" + }, + { + "name": "where", + "typeHref": "/V2.0/services/types/Condition", + "type": "condition" + }, + { + "name": "aggregations*", + "typeHref": "/V2.0/services/types/fieldAggregation", + "type": "fieldAggregation" + }, + { + "name": "paging", + "typeHref": "/V2.0/services/types/Paging", + "type": "paging" + } + ], + "enumValues": [] + }, + { + "variant": "cZQLQuery", + "description": "Executes a CZQL query.", + "properties": [ + { + "name": "q", + "typeHref": null, + "type": "string" + }, + { + "name": "parameters", + "typeHref": "/V2.0/services/types/Parameters", + "type": "parameters" + }, + { + "name": "paging", + "typeHref": "/V2.0/services/types/Paging", + "type": "paging" + } + ], + "enumValues": [] + }, + { + "variant": "entityQuery", + "description": "Retrieve entities from AdaptiveWork according to a certain criteria", + "properties": [ + { + "name": "typeName*", + "typeHref": null, + "type": "string" + }, + { + "name": "fields", + "typeHref": "/V2.0/services/types/ListOf_String", + "type": "string[]" + }, + { + "name": "orders", + "typeHref": "/V2.0/services/types/OrderBy", + "type": "orderBy" + }, + { + "name": "where", + "typeHref": "/V2.0/services/types/Condition", + "type": "condition" + }, + { + "name": "relations", + "typeHref": "/V2.0/services/types/Relation", + "type": "relation" + }, + { + "name": "deleted", + "typeHref": null, + "type": "boolean" + }, + { + "name": "originalExternalID", + "typeHref": null, + "type": "boolean" + }, + { + "name": "paging", + "typeHref": "/V2.0/services/types/Paging", + "type": "paging" + } + ], + "enumValues": [] + }, + { + "variant": "relationQuery", + "description": "Retrieve the related entities of an object from a specific Relation", + "properties": [ + { + "name": "entityId*", + "typeHref": "/V2.0/services/types/EntityId", + "type": "entityId" + }, + { + "name": "relationName*", + "typeHref": null, + "type": "string" + }, + { + "name": "fields", + "typeHref": "/V2.0/services/types/ListOf_String", + "type": "string[]" + }, + { + "name": "orders", + "typeHref": "/V2.0/services/types/OrderBy", + "type": "orderBy" + }, + { + "name": "where", + "typeHref": "/V2.0/services/types/Condition", + "type": "condition" + }, + { + "name": "relations", + "typeHref": "/V2.0/services/types/Relation", + "type": "relation" + }, + { + "name": "fromLink", + "typeHref": null, + "type": "boolean" + }, + { + "name": "paging", + "typeHref": "/V2.0/services/types/Paging", + "type": "paging" + } + ], + "enumValues": [] + }, + { + "variant": "expenseQuery", + "description": "Retrieves expenses for a specific Project or Customer", + "properties": [ + { + "name": "projectId", + "typeHref": "/V2.0/services/types/EntityId", + "type": "entityId" + }, + { + "name": "customerId", + "typeHref": "/V2.0/services/types/EntityId", + "type": "entityId" + }, + { + "name": "typeName*", + "typeHref": null, + "type": "string" + }, + { + "name": "fields", + "typeHref": "/V2.0/services/types/ListOf_String", + "type": "string[]" + }, + { + "name": "orders", + "typeHref": "/V2.0/services/types/OrderBy", + "type": "orderBy" + }, + { + "name": "where", + "typeHref": "/V2.0/services/types/Condition", + "type": "condition" + }, + { + "name": "relations", + "typeHref": "/V2.0/services/types/Relation", + "type": "relation" + }, + { + "name": "deleted", + "typeHref": null, + "type": "boolean" + }, + { + "name": "originalExternalID", + "typeHref": null, + "type": "boolean" + }, + { + "name": "paging", + "typeHref": "/V2.0/services/types/Paging", + "type": "paging" + } + ], + "enumValues": [] + }, + { + "variant": "timesheetQuery", + "description": "Retrieves timesheet according to different criterias", + "properties": [ + { + "name": "projectId", + "typeHref": "/V2.0/services/types/EntityId", + "type": "entityId" + }, + { + "name": "customerId", + "typeHref": "/V2.0/services/types/EntityId", + "type": "entityId" + }, + { + "name": "iAmTheApprover", + "typeHref": null, + "type": "boolean" + }, + { + "name": "workItems", + "typeHref": "/V2.0/services/types/entityId", + "type": "entityId" + }, + { + "name": "timesheetState", + "typeHref": "/V2.0/services/types/TimesheetState", + "type": "timesheetState" + }, + { + "name": "typeName*", + "typeHref": null, + "type": "string" + }, + { + "name": "fields", + "typeHref": "/V2.0/services/types/ListOf_String", + "type": "string[]" + }, + { + "name": "orders", + "typeHref": "/V2.0/services/types/OrderBy", + "type": "orderBy" + }, + { + "name": "where", + "typeHref": "/V2.0/services/types/Condition", + "type": "condition" + }, + { + "name": "relations", + "typeHref": "/V2.0/services/types/Relation", + "type": "relation" + }, + { + "name": "deleted", + "typeHref": null, + "type": "boolean" + }, + { + "name": "originalExternalID", + "typeHref": null, + "type": "boolean" + }, + { + "name": "paging", + "typeHref": "/V2.0/services/types/Paging", + "type": "paging" + } + ], + "enumValues": [] + }, + { + "variant": "findUserQuery", + "description": "Finds a user based on several criterias", + "properties": [ + { + "name": "firstName", + "typeHref": null, + "type": "string" + }, + { + "name": "lastName", + "typeHref": null, + "type": "string" + }, + { + "name": "eMail", + "typeHref": null, + "type": "string" + }, + { + "name": "fuzzySearchUserName", + "typeHref": null, + "type": "boolean" + }, + { + "name": "includeSuspendedUsers", + "typeHref": null, + "type": "boolean" + }, + { + "name": "fields", + "typeHref": "/V2.0/services/types/ListOf_String", + "type": "string[]" + }, + { + "name": "orders", + "typeHref": "/V2.0/services/types/OrderBy", + "type": "orderBy" + }, + { + "name": "paging", + "typeHref": "/V2.0/services/types/Paging", + "type": "paging" + } + ], + "enumValues": [] + } + ] + }, + "CreateResult": { + "name": "CreateResult", + "variants": [ + { + "variant": "createResult", + "description": "", + "properties": [ + { + "name": "id", + "typeHref": "/V2.0/services/types/EntityId", + "type": "entityId" + } + ], + "enumValues": [] + } + ] + }, + "PostFeedItem": { + "name": "PostFeedItem", + "variants": [ + { + "variant": "postFeedItem", + "description": "An object representing a single post in a feed", + "properties": [ + { + "name": "latestReplies", + "typeHref": "/V2.0/services/types/replyFeedItem", + "type": "replyFeedItem" + }, + { + "name": "pinned", + "typeHref": null, + "type": "boolean" + }, + { + "name": "message", + "typeHref": "/V2.0/services/types/Entity", + "type": "entity" + }, + { + "name": "likedByMe", + "typeHref": null, + "type": "boolean" + }, + { + "name": "relatedEntities", + "typeHref": "/V2.0/services/types/entity", + "type": "entity" + }, + { + "name": "notify", + "typeHref": "/V2.0/services/types/entity", + "type": "entity" + }, + { + "name": "topics", + "typeHref": "/V2.0/services/types/entity", + "type": "entity" + }, + { + "name": "bodyMarkup", + "typeHref": null, + "type": "string" + }, + { + "name": "summary", + "typeHref": null, + "type": "string" + } + ], + "enumValues": [] + } + ] + }, + "Relation": { + "name": "Relation", + "variants": [ + { + "variant": "relation", + "description": "", + "properties": [ + { + "name": "name", + "typeHref": null, + "type": "string" + }, + { + "name": "fields", + "typeHref": "/V2.0/services/types/ListOf_String", + "type": "string[]" + }, + { + "name": "where", + "typeHref": "/V2.0/services/types/Condition", + "type": "condition" + }, + { + "name": "orders", + "typeHref": "/V2.0/services/types/OrderBy", + "type": "orderBy" + }, + { + "name": "fromLink", + "typeHref": null, + "type": "boolean" + } + ], + "enumValues": [] + } + ] + }, + "CalendarException": { + "name": "CalendarException", + "variants": [ + { + "variant": "calendarException", + "description": "", + "properties": [ + { + "name": "id", + "typeHref": "/V2.0/services/types/EntityId", + "type": "entityId" + }, + { + "name": "name", + "typeHref": null, + "type": "string" + }, + { + "name": "isWorkingDay", + "typeHref": null, + "type": "boolean" + }, + { + "name": "isAllDay", + "typeHref": null, + "type": "boolean" + }, + { + "name": "startHour", + "typeHref": null, + "type": "double" + }, + { + "name": "endHour", + "typeHref": null, + "type": "double" + }, + { + "name": "exceptionType", + "typeHref": "/V2.0/services/types/EntityId", + "type": "entityId" + }, + { + "name": "startDate", + "typeHref": "/V2.0/services/types/DateTime", + "type": "dateTime" + }, + { + "name": "endDate", + "typeHref": "/V2.0/services/types/DateTime", + "type": "dateTime" + }, + { + "name": "repeat", + "typeHref": "/V2.0/services/types/Repeat", + "type": "repeat" + } + ], + "enumValues": [] + } + ] + }, + "ExceptionDate": { + "name": "ExceptionDate", + "variants": [ + { + "variant": "exceptionDate", + "description": "", + "properties": [ + { + "name": "date", + "typeHref": "/V2.0/services/types/DateTime", + "type": "dateTime" + }, + { + "name": "calendarExceptionId", + "typeHref": "/V2.0/services/types/EntityId", + "type": "entityId" + } + ], + "enumValues": [] + } + ] + }, + "Day": { + "name": "Day", + "variants": [ + { + "variant": "day (enum)", + "description": "", + "properties": [], + "enumValues": [] + } + ] + }, + "DayInformation": { + "name": "DayInformation", + "variants": [ + { + "variant": "dayInformation", + "description": "Provides working day information about a calendar day", + "properties": [ + { + "name": "isWorkingDay", + "typeHref": null, + "type": "boolean" + }, + { + "name": "totalWorkingHours", + "typeHref": null, + "type": "double" + }, + { + "name": "startHour", + "typeHref": null, + "type": "double" + }, + { + "name": "endHour", + "typeHref": null, + "type": "double" + } + ], + "enumValues": [] + } + ] + }, + "OrganizationLicenseConsumption": { + "name": "OrganizationLicenseConsumption", + "variants": [ + { + "variant": "organizationLicenseConsumption", + "description": "", + "properties": [ + { + "name": "id", + "typeHref": "/V2.0/services/types/EntityId", + "type": "entityId" + }, + { + "name": "licenseConsumption", + "typeHref": "/V2.0/services/types/LicenseConsumption", + "type": "licenseConsumption" + } + ], + "enumValues": [] + } + ] + }, + "MissingTimesheets": { + "name": "MissingTimesheets", + "variants": [ + { + "variant": "missingTimesheets", + "description": "", + "properties": [ + { + "name": "date", + "typeHref": "/V2.0/services/types/DateTime", + "type": "dateTime" + }, + { + "name": "workingHours", + "typeHref": null, + "type": "double" + }, + { + "name": "reportedHours", + "typeHref": null, + "type": "double" + }, + { + "name": "missingHours", + "typeHref": null, + "type": "double" + } + ], + "enumValues": [] + } + ] + }, + "NewsFeedMode": { + "name": "NewsFeedMode", + "variants": [ + { + "variant": "newsFeedMode (enum)", + "description": "", + "properties": [], + "enumValues": [] + } + ] + }, + "Array_String": { + "name": "Array_String", + "variants": [ + { + "variant": "string[]", + "description": "", + "properties": [], + "enumValues": [] + } + ] + }, + "IdentifierMap": { + "name": "IdentifierMap", + "variants": [ + { + "variant": "identifierMap", + "description": "", + "properties": [ + { + "name": "oid", + "typeHref": null, + "type": "string" + }, + { + "name": "id", + "typeHref": null, + "type": "string" + } + ], + "enumValues": [] + } + ] + }, + "Parameters": { + "name": "Parameters", + "variants": [ + { + "variant": "parameters", + "description": "", + "properties": [ + { + "name": "objectFields", + "typeHref": null, + "type": "JSON object" + } + ], + "enumValues": [] + } + ] + }, + "ReplyFeedItem": { + "name": "ReplyFeedItem", + "variants": [ + { + "variant": "replyFeedItem", + "description": "", + "properties": [ + { + "name": "message", + "typeHref": "/V2.0/services/types/Entity", + "type": "entity" + }, + { + "name": "likedByMe", + "typeHref": null, + "type": "boolean" + }, + { + "name": "relatedEntities", + "typeHref": "/V2.0/services/types/entity", + "type": "entity" + }, + { + "name": "notify", + "typeHref": "/V2.0/services/types/entity", + "type": "entity" + }, + { + "name": "topics", + "typeHref": "/V2.0/services/types/entity", + "type": "entity" + }, + { + "name": "bodyMarkup", + "typeHref": null, + "type": "string" + }, + { + "name": "summary", + "typeHref": null, + "type": "string" + } + ], + "enumValues": [] + } + ] + }, + "RetrieveResult": { + "name": "RetrieveResult", + "variants": [ + { + "variant": "retrieveResult", + "description": "", + "properties": [ + { + "name": "entity", + "typeHref": "/V2.0/services/types/Entity", + "type": "entity" + } + ], + "enumValues": [] + } + ] + }, + "TimesheetState": { + "name": "TimesheetState", + "variants": [ + { + "variant": "timesheetState (enum)", + "description": "", + "properties": [], + "enumValues": [] + } + ] + }, + "FileInformation": { + "name": "FileInformation", + "variants": [ + { + "variant": "fileInformation", + "description": "", + "properties": [ + { + "name": "storage", + "typeHref": "/V2.0/services/types/Storage", + "type": "storage" + }, + { + "name": "url", + "typeHref": null, + "type": "string" + }, + { + "name": "fileName", + "typeHref": null, + "type": "string" + }, + { + "name": "subType", + "typeHref": null, + "type": "string" + }, + { + "name": "extendedInfo", + "typeHref": null, + "type": "string" + } + ], + "enumValues": [] + } + ] + }, + "EntityDescription": { + "name": "EntityDescription", + "variants": [ + { + "variant": "entityDescription", + "description": "", + "properties": [ + { + "name": "typeName", + "typeHref": null, + "type": "string" + }, + { + "name": "fields", + "typeHref": "/V2.0/services/types/fieldDescription", + "type": "fieldDescription" + }, + { + "name": "validStates", + "typeHref": "/V2.0/services/types/ListOf_String", + "type": "string[]" + }, + { + "name": "label", + "typeHref": null, + "type": "string" + }, + { + "name": "labelPlural", + "typeHref": null, + "type": "string" + }, + { + "name": "parentEntity", + "typeHref": null, + "type": "string" + }, + { + "name": "displayField", + "typeHref": null, + "type": "string" + }, + { + "name": "disabled", + "typeHref": null, + "type": "boolean" + }, + { + "name": "relations", + "typeHref": "/V2.0/services/types/RelationDescription", + "type": "relationDescription" + } + ], + "enumValues": [] + } + ] + }, + "EntityRelationsDescription": { + "name": "EntityRelationsDescription", + "variants": [ + { + "variant": "entityRelationsDescription", + "description": "", + "properties": [ + { + "name": "typeName", + "typeHref": null, + "type": "string" + }, + { + "name": "relations", + "typeHref": "/V2.0/services/types/relationDescription", + "type": "relationDescription" + } + ], + "enumValues": [] + } + ] + }, + "TriggerType": { + "name": "TriggerType", + "variants": [ + { + "variant": "triggerType (enum)", + "description": "", + "properties": [], + "enumValues": [] + } + ] + }, + "Action": { + "name": "Action", + "variants": [ + { + "variant": "action", + "description": "", + "properties": [ + { + "name": "url*", + "typeHref": null, + "type": "string" + }, + { + "name": "method*", + "typeHref": "/V2.0/services/types/HttpMethod", + "type": "string(HttpMethod)" + }, + { + "name": "headers", + "typeHref": null, + "type": "string" + }, + { + "name": "body", + "typeHref": null, + "type": "string" + } + ], + "enumValues": [] + } + ] + }, + "Request": { + "name": "Request", + "variants": [ + { + "variant": "request", + "description": "An object representing a REST API call", + "properties": [ + { + "name": "url", + "typeHref": null, + "type": "string" + }, + { + "name": "method", + "typeHref": null, + "type": "string" + }, + { + "name": "body", + "typeHref": null, + "type": "object" + } + ], + "enumValues": [] + } + ] + }, + "Response": { + "name": "Response", + "variants": [ + { + "variant": "response", + "description": "An object representing an API call response", + "properties": [ + { + "name": "statusCode", + "typeHref": null, + "type": "integer" + }, + { + "name": "body", + "typeHref": null, + "type": "object" + } + ], + "enumValues": [] + } + ] + }, + "Recipient": { + "name": "Recipient", + "variants": [ + { + "variant": "recipient", + "description": "", + "properties": [ + { + "name": "recipientType", + "typeHref": "/V2.0/services/types/RecipientType", + "type": "recipientType" + }, + { + "name": "user", + "typeHref": "/V2.0/services/types/EntityId", + "type": "entityId" + }, + { + "name": "eMail", + "typeHref": null, + "type": "string" + } + ], + "enumValues": [] + } + ] + }, + "AccessType": { + "name": "AccessType", + "variants": [ + { + "variant": "commentAccessType (enum)", + "description": "", + "properties": [], + "enumValues": [] + } + ] + }, + "RoleForResource": { + "name": "RoleForResource", + "variants": [ + { + "variant": "roleForResource", + "description": "", + "properties": [ + { + "name": "role*", + "typeHref": "/V2.0/services/types/RoleType", + "type": "roleType" + }, + { + "name": "resource*", + "typeHref": "/V2.0/services/types/EntityId", + "type": "entityId" + } + ], + "enumValues": [] + } + ] + }, + "ErrorCode": { + "name": "ErrorCode", + "variants": [ + { + "variant": "errorCode (enum)", + "description": "", + "properties": [], + "enumValues": [] + } + ] + }, + "Order": { + "name": "Order", + "variants": [ + { + "variant": "order (enum)", + "description": "", + "properties": [], + "enumValues": [] + } + ] + }, + "Expression": { + "name": "Expression", + "variants": [ + { + "variant": "constantExpression", + "description": "An expression which represents a constant value (e.g. 1, 'Joe', true, null etc.)", + "properties": [ + { + "name": "value", + "typeHref": null, + "type": "object" + } + ], + "enumValues": [] + }, + { + "variant": "predefinedDateRangeExpression", + "description": "An expression which represents a relative DateTime value (e.g. 'ThisMonth', 'LastQuarter', etc.)", + "properties": [ + { + "name": "value", + "typeHref": "/V2.0/services/types/DatePeriod", + "type": "datePeriod" + }, + { + "name": "dateRangeValue", + "typeHref": "/V2.0/services/types/DatePeriod", + "type": "datePeriod" + } + ], + "enumValues": [] + }, + { + "variant": "constantListExpression", + "description": "An expression which represents array of constant values. Used in", + "properties": [ + { + "name": "values", + "typeHref": "/V2.0/services/types/object", + "type": "object" + } + ], + "enumValues": [] + }, + { + "variant": "fieldExpression", + "description": "An expression which represents an object field", + "properties": [ + { + "name": "fieldName", + "typeHref": null, + "type": "string" + } + ], + "enumValues": [] + }, + { + "variant": "queryExpression", + "description": "An expression which represents a query. Used in", + "properties": [ + { + "name": "query", + "typeHref": "/V2.0/services/types/Query", + "type": "query" + } + ], + "enumValues": [] + } + ] + }, + "Operator": { + "name": "Operator", + "variants": [ + { + "variant": "operator (enum)", + "description": "The operator to use in a comparison condition", + "properties": [], + "enumValues": [] + } + ] + }, + "FunctionType": { + "name": "FunctionType", + "variants": [ + { + "variant": "groupingFunction (enum)", + "description": "", + "properties": [], + "enumValues": [] + } + ] + }, + "ApplyOnMembersResult": { + "name": "ApplyOnMembersResult", + "variants": [] + }, + "FailureStatusMessage": { + "name": "FailureStatusMessage", + "variants": [ + { + "variant": "failureStatusMessage", + "description": "", + "properties": [ + { + "name": "failureMessage", + "typeHref": null, + "type": "string" + } + ], + "enumValues": [] + } + ] + }, + "Repeat": { + "name": "Repeat", + "variants": [ + { + "variant": "repeat", + "description": "", + "properties": [ + { + "name": "every", + "typeHref": "/V2.0/services/types/Every", + "type": "every" + }, + { + "name": "occurrences", + "typeHref": null, + "type": "integer" + }, + { + "name": "endBy", + "typeHref": "/V2.0/services/types/DateTime", + "type": "dateTime" + } + ], + "enumValues": [] + } + ] + }, + "LicenseConsumption": { + "name": "LicenseConsumption", + "variants": [ + { + "variant": "licenseConsumption", + "description": "", + "properties": [ + { + "name": "licenseTypeLabel", + "typeHref": null, + "type": "string" + }, + { + "name": "licenseType", + "typeHref": "/V2.0/services/types/LicenseType", + "type": "licenseType" + }, + { + "name": "assignedLicenses", + "typeHref": null, + "type": "integer" + }, + { + "name": "activeUsers", + "typeHref": null, + "type": "integer" + }, + { + "name": "allocatedLicenses", + "typeHref": null, + "type": "integer" + } + ], + "enumValues": [] + } + ] + }, + "Storage": { + "name": "Storage", + "variants": [ + { + "variant": "storage (enum)", + "description": "", + "properties": [], + "enumValues": [] + } + ] + }, + "FieldDescription": { + "name": "FieldDescription", + "variants": [ + { + "variant": "fieldDescription", + "description": "", + "properties": [ + { + "name": "name", + "typeHref": null, + "type": "string" + }, + { + "name": "type", + "typeHref": "/V2.0/services/types/FieldType", + "type": "string(FieldType)" + }, + { + "name": "presentationType", + "typeHref": "/V2.0/services/types/PresentationType", + "type": "string(PresentationType)" + }, + { + "name": "label", + "typeHref": null, + "type": "string" + }, + { + "name": "defaultValue", + "typeHref": null, + "type": "object" + }, + { + "name": "system", + "typeHref": null, + "type": "boolean" + }, + { + "name": "calculated", + "typeHref": null, + "type": "boolean" + }, + { + "name": "nullable", + "typeHref": null, + "type": "boolean" + }, + { + "name": "createOnly", + "typeHref": null, + "type": "boolean" + }, + { + "name": "updateable", + "typeHref": null, + "type": "boolean" + }, + { + "name": "internal", + "typeHref": null, + "type": "boolean" + }, + { + "name": "custom", + "typeHref": null, + "type": "boolean" + }, + { + "name": "visible", + "typeHref": null, + "type": "boolean" + }, + { + "name": "decimalPlaces", + "typeHref": null, + "type": "integer" + }, + { + "name": "filterable", + "typeHref": null, + "type": "boolean" + }, + { + "name": "sortable", + "typeHref": null, + "type": "boolean" + }, + { + "name": "format", + "typeHref": "/V2.0/services/types/IFormat", + "type": "iFormat" + }, + { + "name": "maxLength", + "typeHref": null, + "type": "integer" + }, + { + "name": "flags", + "typeHref": "/V2.0/services/types/ListOf_String", + "type": "string[]" + }, + { + "name": "restrictedFieldSetName", + "typeHref": null, + "type": "string" + }, + { + "name": "manuallySetName", + "typeHref": null, + "type": "string" + } + ], + "enumValues": [] + } + ] + }, + "RelationDescription": { + "name": "RelationDescription", + "variants": [ + { + "variant": "relationDescription", + "description": "", + "properties": [ + { + "name": "name", + "typeHref": null, + "type": "string" + }, + { + "name": "label", + "typeHref": null, + "type": "string" + }, + { + "name": "roleLabel", + "typeHref": null, + "type": "string" + }, + { + "name": "readOnly", + "typeHref": null, + "type": "boolean" + }, + { + "name": "linkTypeName", + "typeHref": null, + "type": "string" + }, + { + "name": "relatedTypeName", + "typeHref": null, + "type": "string" + }, + { + "name": "sourceFieldName", + "typeHref": null, + "type": "string" + } + ], + "enumValues": [] + } + ] + }, + "HttpMethod": { + "name": "HttpMethod", + "variants": [ + { + "variant": "httpMethod (enum)", + "description": "", + "properties": [], + "enumValues": [] + } + ] + }, + "RecipientType": { + "name": "RecipientType", + "variants": [ + { + "variant": "recipientType (enum)", + "description": "", + "properties": [], + "enumValues": [] + } + ] + }, + "RoleType": { + "name": "RoleType", + "variants": [] + }, + "DatePeriod": { + "name": "DatePeriod", + "variants": [ + { + "variant": "datePeriod (enum)", + "description": "The operator to use in a comparison condition", + "properties": [], + "enumValues": [] + } + ] + }, + "Every": { + "name": "Every", + "variants": [ + { + "variant": "every", + "description": "", + "properties": [ + { + "name": "recurrenceType", + "typeHref": null, + "type": "string" + }, + { + "name": "period", + "typeHref": null, + "type": "integer" + } + ], + "enumValues": [] + } + ] + }, + "FieldType": { + "name": "FieldType", + "variants": [ + { + "variant": "fieldType (enum)", + "description": "", + "properties": [], + "enumValues": [] + } + ] + }, + "PresentationType": { + "name": "PresentationType", + "variants": [ + { + "variant": "presentationType (enum)", + "description": "", + "properties": [], + "enumValues": [] + } + ] + }, + "IFormat": { + "name": "IFormat", + "variants": [] + } + } +} \ No newline at end of file diff --git a/src/generated/metadata-catalog.json b/src/generated/metadata-catalog.json new file mode 100644 index 0000000..dd87fbe --- /dev/null +++ b/src/generated/metadata-catalog.json @@ -0,0 +1,244365 @@ +{ + "fetchedAt": "2026-06-02T17:04:59.347Z", + "entities": [ + { + "typeName": "ContractHierarchyLink", + "label": "Contract Hierarchy", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Parent", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Child", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Child", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83872", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CaseContractPurchaseOrderLink", + "label": "Case Contract Purchase Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Case", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Case", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "ContractPurchaseOrders", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Contract Purchase Orders", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83873", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CaseContractLink", + "label": "Case Contract Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Case", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Case", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Contract", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Contracts", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83874", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ContractPurchaseOrder", + "label": "Contract Purchase Order", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83875", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ContractState" + ], + "name": "ContractPOState", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/ContractState/Active", + "Name": "Active" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ContractStatus" + ], + "name": "ContractPOStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Status", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Start Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Due date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "BusinessImpact" + ], + "name": "BusinessImpact", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Business Impact", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ClosingNotes", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Closing Notes", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedBusinessValue", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Expected Business Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "GoalsAchieved", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Goals Achieved", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "HoldingNotes", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Holding Notes", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Internal ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalStatus", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Internal Status", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Mitigation", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1024, + "presentationType": "TextArea", + "label": "Mitigation", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OverallSummary", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Overall Summary", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Manager", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Contract Purchase Order Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Risks", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1024, + "presentationType": "TextArea", + "label": "Potential Risks", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ContractSize" + ], + "name": "ContractSize", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Contract Size", + "defaultValue": { + "id": "/ContractSize/Small", + "Name": "Small" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ProjectGoals", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Contract Goals", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ContractType" + ], + "name": "PurchaseOrderType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Purchase Order Type", + "defaultValue": { + "id": "/ContractType/Development", + "Name": "Development" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StatusChangedOn", + "type": "Date", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Status Changed on", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Customer" + ], + "name": "Customer", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Customer", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Contract" + ], + "name": "Contract", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Contract", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Project", + "Milestone", + "Task" + ], + "name": "WorkItem", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Associated Item", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Phase" + ], + "name": "Phase", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Phase", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ChargedType" + ], + "name": "ChargedType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Charged", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CommitLevel" + ], + "name": "CommitLevel", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Commit Level", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DeliverableType", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Deliverable Type", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GeographicalRegion" + ], + "name": "GeographicalRegion", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Geographical Region", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Countries" + ], + "name": "Country", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Country", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CountryState" + ], + "name": "StateProvince", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State/Province", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Importance" + ], + "name": "Importance", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "includeDataFields": false + }, + "presentationType": "PickList", + "label": "Importance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Priority", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Priority", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CasesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Cases", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "RelatedRisks", + "label": "Risks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseContractPurchaseOrderLink", + "relatedTypeName": "Risk", + "sourceFieldName": "ContractPurchaseOrders" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "Cases", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseContractPurchaseOrderLink", + "relatedTypeName": "Case", + "sourceFieldName": "ContractPurchaseOrders" + }, + { + "name": "RelatedIssues", + "label": "Issues", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseContractPurchaseOrderLink", + "relatedTypeName": "Issue", + "sourceFieldName": "ContractPurchaseOrders" + }, + { + "name": "RelatedBugs", + "label": "Bugs", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseContractPurchaseOrderLink", + "relatedTypeName": "Bug", + "sourceFieldName": "ContractPurchaseOrders" + }, + { + "name": "RelatedRequests", + "label": "Requests", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseContractPurchaseOrderLink", + "relatedTypeName": "EnhancementRequest", + "sourceFieldName": "ContractPurchaseOrders" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ContractPurchaseOrderAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + } + ] + }, + { + "typeName": "Contract", + "label": "Contract", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83876", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ContractState" + ], + "name": "ContractState", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/ContractState/Active", + "Name": "Active" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ContractStatus" + ], + "name": "ContractStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Status", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Start Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Due date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "BusinessImpact" + ], + "name": "BusinessImpact", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Business Impact", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ChargedType" + ], + "name": "Charged", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Charged", + "defaultValue": { + "id": "/ChargedType/Not charged", + "Name": "Not charged" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ClosingNotes", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Closing Notes", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CommitLevel" + ], + "name": "CommitLevel", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Commit Level", + "defaultValue": { + "id": "/CommitLevel/No Commit", + "Name": "No Commit" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DeliverableType", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Deliverable Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedBusinessValue", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Expected Business Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "HoldingNotes", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Holding Notes", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "GoalsAchieved", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Goals Achieved", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Rollup", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Include in Rollup", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Importance" + ], + "name": "Importance", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "includeDataFields": false + }, + "flags": [], + "presentationType": "PickList", + "label": "Importance", + "defaultValue": { + "id": "/Importance/Normal", + "Name": "Normal" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "InternalId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Internal ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalStatus", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Internal Status", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Mitigation", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1024, + "presentationType": "TextArea", + "label": "Mitigation", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OverallSummary", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Overall Summary", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Manager", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Contract Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Phase" + ], + "name": "Phase", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Phase", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Risks", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1024, + "presentationType": "TextArea", + "label": "Potential Risks", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Priority", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Priority", + "defaultValue": 500, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ProjectGoals", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Contract Goals", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "ContractManager", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Contract Manager", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ContactPerson" + ], + "name": "ContractSponsor", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Contract Sponsor", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ContractSize" + ], + "name": "ContractSize", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Contract Size", + "defaultValue": { + "id": "/ContractSize/Small", + "Name": "Small" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ContractType" + ], + "name": "ContractType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Contract Type", + "defaultValue": { + "id": "/ContractType/Development", + "Name": "Development" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StatusChangedOn", + "type": "Date", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Status Changed on", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SoftraxIntegration", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Softrax Integration", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevRecMethod", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Revenue Recognition Method", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Contract" + ], + "name": "ParentContract", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Contract", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Customer" + ], + "name": "Customer", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Customer", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GeographicalRegion" + ], + "name": "GeographicalRegion", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Geographical Region", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Countries" + ], + "name": "Country", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Country", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CountryState" + ], + "name": "StateProvince", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State/Province", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedRevenueManuallySet", + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualRevenueManuallySet", + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "RevenueCurrencyType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "RevenueCurrencyTypeManuallySet", + "presentationType": "PickList", + "label": "Revenue Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Revenue Currency Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Cost Currency Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CasesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Cases", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SubContractsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of sub Contracts", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Expected Revenue Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Revenue Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RecognizedForecastRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Recognized Forecast Revenue Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "ContractPurchaseOrders", + "label": "Contract Purchase Orders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "ContractPurchaseOrder", + "sourceFieldName": "Contract" + }, + { + "name": "Cases", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseContractLink", + "relatedTypeName": "Case", + "sourceFieldName": "Contract" + }, + { + "name": "RelatedIssues", + "label": "Issues", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseContractLink", + "relatedTypeName": "Issue", + "sourceFieldName": "Contract" + }, + { + "name": "RelatedBugs", + "label": "Bugs", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseContractLink", + "relatedTypeName": "Bug", + "sourceFieldName": "Contract" + }, + { + "name": "RelatedRequests", + "label": "Requests", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseContractLink", + "relatedTypeName": "EnhancementRequest", + "sourceFieldName": "Contract" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ContractAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "SubContracts", + "label": "Sub Contracts", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ContractHierarchyLink", + "relatedTypeName": "Contract", + "sourceFieldName": "Parent" + }, + { + "name": "WorkItems", + "label": "Associated Items", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "WorkItem", + "sourceFieldName": "Contract" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + } + ] + }, + { + "typeName": "CustomizationProfilingData", + "label": "Customization Profiling Data", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83877", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItem" + ], + "name": "SourceObject", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PerformanceData", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": -1, + "presentationType": "RichText", + "label": "Performance Data", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Comment", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": -1, + "presentationType": "RichText", + "label": "Comment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LoggedOrganizationTime", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Organization Time", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CollectorOrganizationTime", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Collector Organization Time", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Corellations", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Corellations", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Note", + "label": "Note", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Comment", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": -1, + "presentationType": "RichText", + "label": "Comment", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlainText", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Text", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItem", + "Case", + "Customer", + "User", + "Asset", + "Portfolio", + "MeetingNote", + "ActionItem", + "Decision", + "Target", + "Objective", + "Contribution", + "Contract", + "ContractPurchaseOrder" + ], + "name": "AttachedTo", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83878", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CommentType" + ], + "name": "Visibility", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Visibility", + "defaultValue": { + "id": "/CommentType/Public", + "Name": "Public" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Comments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RelatedDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Related Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Post", + "label": "V5 Post", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Comment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Comment", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlainText", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Text", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Project", + "PlanningComponent", + "ExpenseSheet", + "Case" + ], + "name": "AttachedTo", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83879", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CommentType" + ], + "name": "Visibility", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Visibility", + "defaultValue": { + "id": "/CommentType/Public", + "Name": "Public" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Comments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "From", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "From", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Recipient", + "type": "Entity", + "filterable": false, + "sortable": false, + "presentationType": "ReferenceToObject", + "label": "Recipient", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Email", + "label": "Email", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Subject", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Comment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Comment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlainText", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Text", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItem", + "Case", + "Customer", + "Report", + "Dashboard", + "Portfolio", + "MeetingNote", + "ActionItem", + "Decision", + "Target", + "Objective", + "Contribution", + "Contract", + "ContractPurchaseOrder" + ], + "name": "AttachedTo", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83880", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CommentType" + ], + "name": "Visibility", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Visibility", + "defaultValue": { + "id": "/CommentType/Public", + "Name": "Public" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Comments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User", + "ContactPerson" + ], + "name": "SentBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Sent By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Comment", + "label": "Collaboration Items", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Comment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Comment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlainText", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Text", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItem", + "ExpenseSheet", + "Case" + ], + "name": "AttachedTo", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CommentType" + ], + "name": "Visibility", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Visibility", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Comments", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CapacityTimeline", + "label": "Capacity", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83881", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EffectiveFrom", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Effective from", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EffectiveTo", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Effective to", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "CapacityFor", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "User", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Comment", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Comment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "StaffTimePhasedDataMonthly", + "label": "Staff Time Phased Data (Monthly)", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Draft", + "Name": "Draft" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83882", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "Project", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorlkNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegular", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertime", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPending", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on N/A (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ResourceUtilizationCategory" + ], + "name": "ResourceUtilizationCategory", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Resource Utilization Category", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "WorkOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Non-Billable", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost N/A", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Non-Billable", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue N/A", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkBillableOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkNonBillableOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Non-billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOpexOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "workCapexOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkBillableForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkNonBillableForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Non-billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOpexForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Task Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkCapexForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Task Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FiscalMonth", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Fiscal Month", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "UserGroup" + ], + "name": "Group", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Requested Group", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GeoLocation" + ], + "name": "GeoLocation", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Geo Location", + "defaultValue": { + "id": "/GeoLocation/None", + "Name": "None" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Language" + ], + "name": "Language", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Language", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ProjectRole", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Project role", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RequestedWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Requested Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ResourceRequest" + ], + "name": "RelatedResourceRequest", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resource Request", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportingPeriod", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Reporting period", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "StaffTimePhasedDataDaily", + "label": "Staff Time Phased Data (Daily)", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Draft", + "Name": "Draft" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83883", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "Project", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorlkNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegular", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertime", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPending", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on N/A (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ResourceUtilizationCategory" + ], + "name": "ResourceUtilizationCategory", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Resource Utilization Category", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "WorkOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Non-Billable", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost N/A", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Non-Billable", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue N/A", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkBillableOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkNonBillableOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Non-billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOpexOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "workCapexOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkBillableForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkNonBillableForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Non-billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOpexForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Task Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkCapexForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Task Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "UserGroup" + ], + "name": "Group", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Requested Group", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GeoLocation" + ], + "name": "GeoLocation", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Geo Location", + "defaultValue": { + "id": "/GeoLocation/None", + "Name": "None" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Language" + ], + "name": "Language", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Language", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ProjectRole", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Project role", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RequestedWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Requested Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ResourceRequest" + ], + "name": "RelatedResourceRequest", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resource Request", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportingPeriod", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Reporting period", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "BusinessUnitRestrictedFields", + "label": "Restricted Fields", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "RestrictedFieldsSetLink", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Restricted Fields Set Link", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BusinessUnit", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Business Unit", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83884", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "RestrictedFieldsSetLink", + "label": "Restricted Fields", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "MemberEntity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "User", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "RestrictedFieldsSet" + ], + "name": "RestrictedFieldsSet", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Restricted Fields Set", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83885", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TimelinesRoadmapMilestoneLink", + "label": "Timelines Roadmap Milestone Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "TimelinesRoadmap", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "TimelinesRoadmap", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Milestone", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Milestone", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83886", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "BusinessUnitsAccess", + "label": "Business Units Access", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "User", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BusinessUnit", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83887", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Financial", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Financial Permissions", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "RestrictedFields", + "label": "Restricted Fields", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "MemberEntity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "OrganizationalUnit", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83888", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "RestrictedFieldsSet" + ], + "name": "RestrictedFieldSet", + "type": "MultiPickList", + "filterable": false, + "sortable": false, + "flags": [], + "presentationType": "MultiPickList", + "label": "Restricted Field Set", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "RestrictedFieldSetRelation", + "label": "Restricted Field Set", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RestrictedFields", + "relatedTypeName": "RestrictedFieldsSet" + } + ] + }, + { + "typeName": "BusinessUnit", + "label": "Business Unit", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "LandingPage" + ], + "name": "LandingPage", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Landing Page", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": false, + "sortable": false, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Cost Regular Hourly Rate", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": false, + "sortable": false, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Cost Overtime Hourly Rate", + "defaultValue": { + "currency": "BRL", + "value": 20 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": false, + "sortable": false, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Billing Regular Hourly Rate", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": false, + "sortable": false, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Billing Overtime Hourly Rate", + "defaultValue": { + "currency": "BRL", + "value": 20 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Countries" + ], + "name": "Country", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Country", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CountryState" + ], + "name": "CountryState", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Country State", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "TimeZone" + ], + "name": "TimeZone", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Time Zone", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Language" + ], + "name": "Language", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Default Language", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Default Currency", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ShortDateFormat" + ], + "name": "ShortDateFormat", + "type": "Entity", + "filterable": false, + "sortable": false, + "presentationType": "PickList", + "label": "Short Date Format", + "defaultValue": { + "id": "/ShortDateFormat/dd/MM/yy", + "Name": "dd/MM/yy" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "NumericFormat" + ], + "name": "NumericFormat", + "type": "Entity", + "filterable": false, + "sortable": false, + "presentationType": "PickList", + "label": "Numeric Format", + "defaultValue": { + "id": "/NumericFormat/ThousandsDot_DecimalComma", + "Name": "ThousandsDot_DecimalComma" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Active", + "Name": "Active" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83889", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "BusinessUnitAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + } + ] + }, + { + "typeName": "TimelinesRoadmapKeyDate", + "label": "TimelinesRoadmapKeyDate", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83890", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TimelinesRoadmap" + ], + "name": "RelatesTo", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Relates To", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "KeyDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Key Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 255, + "presentationType": "Text", + "label": "Color", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CurrencyExchangeRateCard", + "label": "Currency Exchange Rate Card", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83891", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SupportsDateEffectivity", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Supports Date Effectivity", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "CurrencyExchangeRateCardForProjects", + "label": "Assigned to Projects", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "GenericProject", + "sourceFieldName": "CurrencyExchangeRateCard" + }, + { + "name": "CurrencyExchangeRateCardForCustomers", + "label": "Assigned to Customers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Customer", + "sourceFieldName": "CurrencyExchangeRateCard" + }, + { + "name": "CurrencyExchangeRates", + "label": "Currency Exchange Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "CurrencyExchangeRate", + "sourceFieldName": "WorkItem" + }, + { + "name": "CurrencyExchangeRateCardForCases", + "label": "Assigned to Cases", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "CurrencyExchangeRateCard" + }, + { + "name": "CurrencyExchangeRateCardForProjectVersions", + "label": "Assigned to Project Versions", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ProjectVersion", + "sourceFieldName": "CurrencyExchangeRateCard" + }, + { + "name": "CurrencyExchangeRateCardForPortfolios", + "label": "Assigned to Portfolios", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Portfolio", + "sourceFieldName": "CurrencyExchangeRateCard" + } + ] + }, + { + "typeName": "ObjectiveHierarchyLink", + "label": "Objective Hierarchy", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Parent", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Child", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Child", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83892", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TargetHierarchyLink", + "label": "Target Hierarchy", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Parent", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Child", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Child", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83893", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Contribution", + "label": "Contribution", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83894", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Group", + "WorkItem", + "Case", + "Document", + "ExpenseSheet", + "User", + "Asset", + "Customer", + "Expense", + "Topic", + "FoldersAndReports", + "NonLaborResource", + "ResourceRequest", + "Portfolio", + "ActionItem", + "Decision", + "Target", + "Objective", + "Contribution", + "Contract", + "ContractPurchaseOrder" + ], + "name": "AssociatedItem", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Associated Item", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TargetUnitType" + ], + "name": "Unit", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Unit", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "UnitDisplay", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "Unit*", + "defaultValue": "", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TargetCurrencyType" + ], + "name": "UnitType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Unit Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "TargetUnitScale" + ], + "name": "UnitScale", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Unit Scale", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Assignee", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Assignee", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "TargetState" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/TargetState/In Planning", + "Name": "In Planning" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "TargetStatus" + ], + "name": "Status", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Status", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedDate", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Planned Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedValue", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Planned Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualDate", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Actual Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualValue", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Actual Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Gap", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Gap", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Target" + ], + "name": "LinkedTarget", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Linked Target", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItem" + ], + "name": "DeliveredIn", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Delivered In", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ContributionAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + } + ] + }, + { + "typeName": "Objective", + "label": "Objective", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83895", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Group", + "WorkItem", + "Case", + "Document", + "ExpenseSheet", + "User", + "Asset", + "Customer", + "Expense", + "Topic", + "FoldersAndReports", + "NonLaborResource", + "ResourceRequest", + "Portfolio", + "ActionItem", + "Decision", + "Target", + "Objective", + "Contribution", + "Contract", + "ContractPurchaseOrder" + ], + "name": "AssociatedItem", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Associated Item", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Objective" + ], + "name": "ParentObjective", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Objective", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SubObjectivesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of sub Objectives", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TargetState" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/TargetState/In Planning", + "Name": "In Planning" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "TargetStatus" + ], + "name": "Status", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Status", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Start Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "End Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Weight", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Weight", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedPercent", + "type": "Double", + "filterable": true, + "sortable": true, + "manuallySetName": "PlannedPercentManuallySet", + "presentationType": "Numeric", + "label": "Planned %", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedPercentManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Planned % Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentOfPlan", + "type": "Double", + "filterable": true, + "sortable": true, + "manuallySetName": "PercentOfPlanManuallySet", + "presentationType": "Numeric", + "label": "% of Plan", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentOfPlanManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% of Plan Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualPercent", + "type": "Double", + "filterable": true, + "sortable": true, + "manuallySetName": "ActualPercentManuallySet", + "presentationType": "Numeric", + "label": "Actual %", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPercentManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual % Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedPercentUncertain", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Planned % Uncertain", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentOfPlanUncertain", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% of Plan Uncertain", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualPercentUncertain", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual % Uncertain", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ContributingWorkItems", + "label": "Contributing Work Items", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "WorkItem" + }, + { + "name": "ContributingPortfolios", + "label": "Contributing Portfolios", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Portfolio" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ObjectiveAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "SubObjectives", + "label": "Sub Objectives", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ObjectiveHierarchyLink", + "relatedTypeName": "Objective", + "sourceFieldName": "Parent" + }, + { + "name": "Targets", + "label": "Targets", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Target", + "sourceFieldName": "AssociatedObjective" + } + ] + }, + { + "typeName": "Target", + "label": "Target", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83896", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Group", + "WorkItem", + "Case", + "Document", + "ExpenseSheet", + "User", + "Asset", + "Customer", + "Expense", + "Topic", + "FoldersAndReports", + "NonLaborResource", + "ResourceRequest", + "Portfolio", + "ActionItem", + "Decision", + "Target", + "Objective", + "Contribution", + "Contract", + "ContractPurchaseOrder" + ], + "name": "AssociatedItem", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Associated Item", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Target" + ], + "name": "ParentTarget", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Target", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SubTargetsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of sub Targets", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TargetUnitType" + ], + "name": "Unit", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Unit", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "UnitDisplay", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "Unit*", + "defaultValue": "", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TargetCurrencyType" + ], + "name": "UnitType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Unit Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "TargetUnitScale" + ], + "name": "UnitScale", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Unit Scale", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "TargetState" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/TargetState/In Planning", + "Name": "In Planning" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "TargetType" + ], + "name": "TargetType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Target Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "TargetStatus" + ], + "name": "Status", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Status", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "InitialDate", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Initial Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InitialValue", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Initial Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TargetDate", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Target Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TargetValue", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Target Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RequiredContributions", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Required Contributions", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedContributions", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Direct Planned Contributions", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "IndirectPlannedContributions", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Indirect Planned Contributions", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedContributions", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Planned Contributions", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualContributions", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Direct Actual Contributions", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "IndirectActualContributions", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Indirect Actual Contributions", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualContributions", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Actual Contributions", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlanningGap", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Planning Gap", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualGap", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Actual Gap", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "% Complete", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Objective" + ], + "name": "AssociatedObjective", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Associated Objective", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Weight", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Weight", + "defaultValue": 1, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedPercent", + "type": "Double", + "filterable": true, + "sortable": true, + "manuallySetName": "PlannedPercentManuallySet", + "presentationType": "Numeric", + "label": "Planned %", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedPercentManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Planned % Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentOfPlan", + "type": "Double", + "filterable": true, + "sortable": true, + "manuallySetName": "PercentOfPlanManuallySet", + "presentationType": "Numeric", + "label": "% of Plan", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentOfPlanManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% of Plan Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualPercent", + "type": "Double", + "filterable": true, + "sortable": true, + "manuallySetName": "ActualPercentManuallySet", + "presentationType": "Numeric", + "label": "Actual %", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPercentManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual % Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WeightedPlannedPercent", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Weighted Planned %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WeightedPercentOfPlan", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Weighted % of Plan", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WeightedActualPercent", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Weighted Actual %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedPercentUncertain", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Planned % Uncertain", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentOfPlanUncertain", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% of Plan Uncertain", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualPercentUncertain", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual % Uncertain", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WeightedPlannedPercentUncertain", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Weighted Planned % Uncertain", + "defaultValue": true, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WeightedPercentOfPlanUncertain", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Weighted % of Plan Uncertain", + "defaultValue": true, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WeightedActualPercentUncertain", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Weighted Actual % Uncertain", + "defaultValue": true, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "ContributingPortfolios", + "label": "Contributing Portfolios", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Portfolio" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ContributingWorkItems", + "label": "Contributing Work Items", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "WorkItem" + }, + { + "name": "IndirectContributions", + "label": "Indirect Contributions", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Contribution" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Contributions", + "label": "Contributions", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Contribution", + "sourceFieldName": "LinkedTarget" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TargetAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "SubTargets", + "label": "Sub Targets", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TargetHierarchyLink", + "relatedTypeName": "Target", + "sourceFieldName": "Parent" + } + ] + }, + { + "typeName": "EntityMappingChange", + "label": "Entity Mappping Change", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83897", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "EntityMapping" + ], + "name": "EntityMapping", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Entity Mapping", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "EntityMapping" + ], + "name": "RelatedEntityMapping", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity Mapping", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChangeMappingActionType", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Change Mapping Action Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LogicExpression", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Logic Expression", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ActionItemLink", + "label": "Action Item Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "ActionItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Action Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "RelatedTo", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related To", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83898", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "DecisionLink", + "label": "Decision Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Decision", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Decision", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "RelatedTo", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related To", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83899", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TimelinesRoadmap", + "label": "Roadmap", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83900", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Portfolio", + "GenericProject", + "Project", + "Program" + ], + "name": "RelatesTo", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Relates To", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "GroupByField", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "GroupByFieldLabel", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "GroupByFieldIsPickup", + "type": "Boolean", + "filterable": false, + "sortable": false, + "presentationType": "Checkbox", + "label": "", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ColorByField", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ColorByFieldLabel", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FiltersData", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Filters data", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FillField", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FillFieldLabel", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DotIndicationColorField", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DotIndicationColorFieldLabel", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AdditionalTextInfoValueField", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AdditionalTextInfoValueFieldLabel", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SettingsData", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Settings data", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "MilestonesColorField", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "MilestonesColorFieldLabel", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "HierarchyFiltersData", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Hierarchy Filters Data", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "MilestoneFiltersData", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Milestone filters data", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "MilestonesFillField", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "MilestonesFillFieldLabel", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "MilestonesAdditionalTextInfoValueField", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "MilestonesAdditionalTextInfoValueFieldLabel", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "Milestones", + "label": "Milestones", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "TimelinesRoadmapMilestoneLink", + "relatedTypeName": "Milestone", + "sourceFieldName": "TimelinesRoadmap" + } + ] + }, + { + "typeName": "PrimaryFlagHistory", + "label": "Primary Flag History", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83901", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EffectiveFrom", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Effective from", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EffectiveTo", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Effective to", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GroupMembershipLink" + ], + "name": "ReferenceToMain", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Group Member Link", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Primary", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Primary", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "UserStateHistory", + "label": "Resource Entity State History", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83902", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EffectiveFrom", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Effective from", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EffectiveTo", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Effective to", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "User Capacity State", + "defaultValue": { + "id": "/State/Active", + "Name": "Active" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "ReferenceToMain", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "User", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Decision", + "label": "Decision", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83903", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItem", + "Case", + "Customer", + "Report", + "Dashboard", + "Portfolio", + "MeetingNote", + "User", + "Asset", + "Target", + "Objective", + "Contribution", + "Contract", + "ContractPurchaseOrder" + ], + "name": "Container", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related To", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Owner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "DecisionState" + ], + "name": "DecisionState", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/DecisionState/Pending", + "Name": "Pending" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Decision", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Due date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "RelatedToEntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related To (Type)", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + } + ] + }, + { + "typeName": "MeetingAttendee", + "label": "Meeting Attendee", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "MeetingNote", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Meeting Note", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Attendee", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Attendee", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83904", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ActionItem", + "label": "Action Item", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83905", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItem", + "Case", + "Customer", + "Report", + "Dashboard", + "Portfolio", + "MeetingNote", + "User", + "Asset", + "Target", + "Objective", + "Contribution", + "Contract", + "ContractPurchaseOrder" + ], + "name": "Container", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related To", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ActionItemState" + ], + "name": "ActionItemState", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/ActionItemState/Open", + "Name": "Open" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Due date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "RelatedToEntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related To (Type)", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + } + ] + }, + { + "typeName": "MeetingNote", + "label": "Meeting Note", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83906", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "WorkItem", + "Case", + "Customer", + "ResourceGroupEntity", + "User", + "Asset", + "NonLaborResource", + "ExpenseSheet", + "Expense", + "Report", + "Dashboard", + "Portfolio", + "Target", + "Objective", + "Contribution", + "Contract", + "ContractPurchaseOrder" + ], + "name": "Container", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related To", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "MeetingNoteState" + ], + "name": "MeetingNoteState", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/MeetingNoteState/Draft", + "Name": "Draft" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Title", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Title", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "MeetingDate", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Meeting Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "MeetingTimeStart", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Time", + "label": "Meeting Time Start", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "MeetingTimeEnd", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Time", + "label": "Meeting Time End", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NextMeetingDate", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Next Meeting Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NextMeeting", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Next Meeting", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Note", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": -1, + "presentationType": "RichText", + "label": "Note", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Agenda", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": -1, + "presentationType": "RichText", + "label": "Agenda", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Location", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Meeting Location", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RecordingURL", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Url", + "label": "Recording URL", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "RelatedToEntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related To (Type)", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TranscriptURL", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Url", + "label": "Transcript URL", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "MsTeamsId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "MsTeams Id", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "ParticipatingUsers", + "label": "Participating Users", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "MeetingAttendee", + "relatedTypeName": "User", + "sourceFieldName": "MeetingNote" + }, + { + "name": "ParticipatingContactPersons", + "label": "Participating Contact Persons", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "MeetingAttendee", + "relatedTypeName": "ContactPerson", + "sourceFieldName": "MeetingNote" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "MeetingNoteAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + } + ] + }, + { + "typeName": "PhasingResourceLinkVersion", + "label": "Phasing resource link version", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItemVersion", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "LaborPhasingVersion", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83907", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": false, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "PhasingResourceLinkAggregated" + ], + "name": "VersionSourceObject", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version of", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Versions" + ], + "name": "Version", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseDataVersion", + "label": "Time Phased Data version", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ResourceTimePhaseVersion", + "sourceFieldName": "RelatedLinkVersion" + } + ] + }, + { + "typeName": "GenericPhasingResourceLinkVersion", + "label": "Generic phasing resource link version", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItemVersion", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "LaborPhasingVersion", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": false, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GenericPhasingResourceLink" + ], + "name": "VersionSourceObject", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version of", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Versions" + ], + "name": "Version", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseDataVersion", + "label": "Time Phased Data version", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ResourceTimePhaseVersion", + "sourceFieldName": "RelatedLinkVersion" + } + ] + }, + { + "typeName": "AssetResourceLinkVersion", + "label": "Asset resource link version", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItemVersion", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "LaborResourceVersion", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83908", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "AssetResourceLinkAggregated" + ], + "name": "VersionSourceObject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version of", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Versions" + ], + "name": "Version", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Total Project Assignment", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Billing regular rate", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Billing overtime rate", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "JobTitle" + ], + "name": "JobTitleForBilling", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Job Title for Billing", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseDataVersion", + "label": "Time Phased Data version", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ResourceTimePhaseVersion", + "sourceFieldName": "RelatedLinkVersion" + } + ] + }, + { + "typeName": "LaborResourceLinkVersion", + "label": "Labor resource link version", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItemVersion", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "LaborResourceVersion", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83909", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "LaborResourceLinkAggregated", + "AssetResourceLinkAggregated" + ], + "name": "VersionSourceObject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version of", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Versions" + ], + "name": "Version", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Total Project Assignment", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Billing regular rate", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Billing overtime rate", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "JobTitle" + ], + "name": "JobTitleForBilling", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Job Title for Billing", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseDataVersion", + "label": "Time Phased Data version", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ResourceTimePhaseVersion", + "sourceFieldName": "RelatedLinkVersion" + } + ] + }, + { + "typeName": "GenericLaborResourceLinkVersion", + "label": "Generic Labor resource link version", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItemVersion", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "LaborResourceVersion", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "LaborResourceLinkAggregated", + "AssetResourceLinkAggregated" + ], + "name": "VersionSourceObject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version of", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Versions" + ], + "name": "Version", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Work", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Total Project Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Billing regular rate", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Billing overtime rate", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "JobTitle" + ], + "name": "JobTitleForBilling", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Job Title for Billing", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseDataVersion", + "label": "Time Phased Data version", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ResourceTimePhaseVersion", + "sourceFieldName": "RelatedLinkVersion" + } + ] + }, + { + "typeName": "FixedPriceResourceLinkVersion", + "label": "Fixed price resource link version", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItemVersion", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83910", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "FixedPriceResourceLinkAggregated" + ], + "name": "VersionSourceObject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version of", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Versions" + ], + "name": "Version", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseDataVersion", + "label": "Time Phased Data version", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ResourceTimePhaseVersion", + "sourceFieldName": "RelatedLinkVersion" + } + ] + }, + { + "typeName": "NonLaborResourceLinkVersion", + "label": "Non labor resource link version", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItemVersion", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "NonLaborResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83911", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkAggregated" + ], + "name": "VersionSourceObject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version of", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Versions" + ], + "name": "Version", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "IsNlr3rdPartyCost", + "type": "Boolean", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "3rd Party", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseDataVersion", + "label": "Time Phased Data version", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ResourceTimePhaseVersion", + "sourceFieldName": "RelatedLinkVersion" + } + ] + }, + { + "typeName": "ResourceLinkFinancialVersion", + "label": "Resource link Version", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItemVersion", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ResourceLinkFinancial" + ], + "name": "VersionSourceObject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version of", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Versions" + ], + "name": "Version", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseDataVersion", + "label": "Time Phased Data version", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ResourceTimePhaseVersion", + "sourceFieldName": "RelatedLinkVersion" + } + ] + }, + { + "typeName": "MilestoneVersion", + "label": "Milestone Snapshot", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1600, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83912", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Versions" + ], + "name": "Version", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Milestone" + ], + "name": "VersionSourceObject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version of", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Due Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "DurationManuallySet", + "presentationType": "Duration", + "label": "Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DurationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Duration Manually Set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkPolicy" + ], + "name": "WorkPolicy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Work Policy", + "defaultValue": { + "id": "/WorkPolicy/Fixed Duration", + "Name": "Fixed Duration" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "TrackStatus" + ], + "name": "TrackStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TrackStatusManuallySet", + "presentationType": "PickList", + "label": "Status", + "defaultValue": { + "id": "/TrackStatus/Not Active", + "Name": "Not Active" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TrackStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Status Manually Set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Conflicts", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Conflicts Flags", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OnCriticalPath", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Other", + "label": "Belong to Critical Path", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedProgress", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected Progress", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItem" + ], + "name": "Parent", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Work Item", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "WorkItemVersion" + ], + "name": "ParentWorkItemVersion", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Work Item Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedBudgetManuallySet", + "presentationType": "Currency", + "label": "Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budgeted Cost Manually Set", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualCostManuallySet", + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Cost Manually Set", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedRevenueManuallySet", + "presentationType": "Currency", + "label": "Expected Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Expected Revenue Manually Set", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualRevenueManuallySet", + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Revenue Manually Set", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Profitability", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CommittedDate", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Committed Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "% Complete", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Manager", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Manager", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RemainingForecastCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Cost Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Revenue Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Capex Actual YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Opex Actual YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Capex Budget YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Opex Budget YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual billable hours", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNonBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual non billable hours", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYPlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectCapexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Capex Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectOpexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Opex Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Amount", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Budget", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Template" + ], + "name": "Template", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Template", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Agreed Date for Exchange rate", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Agreed Date for Exchange rate is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TargetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Target Margin", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor & Budget Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor & Actual Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Contribution", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Contribution", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Profitability %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentInvested", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Invested", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Profitability", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLROpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLRCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost OPEX", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost CAPEX", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost OPEX", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost CAPEX", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Non-Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "BudgetStatus" + ], + "name": "BudgetStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Budget Status", + "defaultValue": { + "id": "/BudgetStatus/Not Active", + "Name": "Not Active" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetedHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "BudgetedHoursManuallySet", + "presentationType": "Duration", + "label": "Budgeted Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHoursManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Budgeted Work Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Balance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedPrice", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Price", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Phase" + ], + "name": "Phase", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Phase", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Balance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyRETC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "CurrencyREAC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EAC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "RevenueEarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EV", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingBilling", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Billing", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Time Tracking Effort", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "LaborCostPercentComplete", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "% Complete Labor Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Due Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenueNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Planned Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Earned Value", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "CPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyEAC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "EAC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "SPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyETC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "FixedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "RTCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RTCPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "TCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "TCPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ChargedAmountManuallySet", + "presentationType": "Currency", + "label": "Charged Amount", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ChargedAmountManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Charged Amount Manually Set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PendingTimeTrackingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time Tracking Effort", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Priority", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Priority", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TotalEstimatedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Estimated Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetVariancePercent", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Budget Variance %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Funding", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "FundingManuallySet", + "presentationType": "Currency", + "label": "Funding", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Funding Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Allocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "AllocationManuallySet", + "presentationType": "Currency", + "label": "Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "AllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allocation Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Unallocated", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unallocated", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingGap", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Gap", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SubAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "SubAllocationManuallySet", + "presentationType": "Currency", + "label": "Sub Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SubAllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Sub Allocation Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TotalAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UnusedAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unused Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingAvailable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Available", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingRemaining", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Remaining", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Billed Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Billed Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billed Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Billed Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Billed Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Billed Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "MilestoneType" + ], + "name": "MilestoneType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Milestone Type", + "defaultValue": { + "id": "/MilestoneType/General", + "Name": "General" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "WorkItemVersionNonLaborResources", + "label": "Version Non-Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "NonLaborResourceLinkVersion", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "WorkItemVersion" + }, + { + "name": "VersionFixedPriceResources", + "label": "Version Fixed Price Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "FixedPriceResourceLinkVersion", + "relatedTypeName": "FixedPriceResource", + "sourceFieldName": "WorkItemVersion" + }, + { + "name": "VersionLaborResources", + "label": "Version's Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "GenericLaborResourceLinkVersion", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItemVersion" + }, + { + "name": "VersionFinancialResources", + "label": "Version Financial Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "GenericResourceEntity", + "sourceFieldName": "WorkItemVersion" + }, + { + "name": "ChildrenVersionObjects", + "label": "Version Sub-Items", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "WorkItemVersion", + "sourceFieldName": "ParentWorkItemVersion" + } + ] + }, + { + "typeName": "ProjectVersion", + "label": "Project Snapshot", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1600, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83913", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Versions" + ], + "name": "Version", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Project" + ], + "name": "VersionSourceObject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version of", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Due Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "DurationManuallySet", + "presentationType": "Duration", + "label": "Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DurationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Duration Manually Set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkPolicy" + ], + "name": "WorkPolicy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Work Policy", + "defaultValue": { + "id": "/WorkPolicy/Fixed Duration", + "Name": "Fixed Duration" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "TrackStatus" + ], + "name": "TrackStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TrackStatusManuallySet", + "presentationType": "PickList", + "label": "Status", + "defaultValue": { + "id": "/TrackStatus/Not Active", + "Name": "Not Active" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TrackStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Status Manually Set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Conflicts", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Conflicts Flags", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OnCriticalPath", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Other", + "label": "Belong to Critical Path", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedProgress", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected Progress", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItem" + ], + "name": "Parent", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Work Item", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "WorkItemVersion" + ], + "name": "ParentWorkItemVersion", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Work Item Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedBudgetManuallySet", + "presentationType": "Currency", + "label": "Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budgeted Cost Manually Set", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualCostManuallySet", + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Cost Manually Set", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedRevenueManuallySet", + "presentationType": "Currency", + "label": "Expected Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Expected Revenue Manually Set", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualRevenueManuallySet", + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Revenue Manually Set", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Profitability", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CommittedDate", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Committed Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "% Complete", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Manager", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Manager", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RemainingForecastCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Cost Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Revenue Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Capex Actual YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Opex Actual YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Capex Budget YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Opex Budget YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual billable hours", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNonBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual non billable hours", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYPlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectCapexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Capex Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectOpexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Opex Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Amount", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Budget", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Template" + ], + "name": "Template", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Template", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Agreed Date for Exchange rate", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Agreed Date for Exchange rate is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TargetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Target Margin", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor & Budget Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor & Actual Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Contribution", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Contribution", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Profitability %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentInvested", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Invested", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Profitability", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLROpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLRCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost OPEX", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost CAPEX", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost OPEX", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost CAPEX", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Non-Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "BudgetStatus" + ], + "name": "BudgetStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Budget Status", + "defaultValue": { + "id": "/BudgetStatus/Not Active", + "Name": "Not Active" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetedHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "BudgetedHoursManuallySet", + "presentationType": "Duration", + "label": "Budgeted Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHoursManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Budgeted Work Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Balance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedPrice", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Price", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Phase" + ], + "name": "Phase", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Phase", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Balance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyRETC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "CurrencyREAC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EAC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "RevenueEarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EV", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingBilling", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Billing", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Time Tracking Effort", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "LaborCostPercentComplete", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "% Complete Labor Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Due Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenueNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Planned Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Earned Value", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "CPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyEAC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "EAC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "SPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyETC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "FixedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "RTCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RTCPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "TCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "TCPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ChargedAmountManuallySet", + "presentationType": "Currency", + "label": "Charged Amount", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ChargedAmountManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Charged Amount Manually Set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PendingTimeTrackingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time Tracking Effort", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Priority", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Priority", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TotalEstimatedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Estimated Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetVariancePercent", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Budget Variance %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Funding", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "FundingManuallySet", + "presentationType": "Currency", + "label": "Funding", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Funding Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Allocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "AllocationManuallySet", + "presentationType": "Currency", + "label": "Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "AllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allocation Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Unallocated", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unallocated", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingGap", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Gap", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SubAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "SubAllocationManuallySet", + "presentationType": "Currency", + "label": "Sub Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SubAllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Sub Allocation Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TotalAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UnusedAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unused Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingAvailable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Available", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingRemaining", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Remaining", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Billed Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Billed Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billed Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Billed Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Billed Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Billed Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ProjectType" + ], + "name": "ProjectType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Project Type", + "defaultValue": { + "id": "/ProjectType/Development", + "Name": "Development" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "ProjectManager", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project Manager", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RollupFinancialAndEffortDataFromShortcut", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Rollup Financial and Effort Data from shortcut", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RollupProgressAndDatesFromShortcut", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Rollup Progress and Dates from shortcut", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsPortfolio", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Portfolio", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "LaborBudgetPickup" + ], + "name": "LaborBudget", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Labor Budget", + "defaultValue": { + "id": "/LaborBudgetPickup/Task Assignment", + "Name": "Task Assignment" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "ProjectSponsor", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project Sponsor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrentFinancialPeriodStart", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrentFinancialPeriodStartSet", + "presentationType": "Date", + "label": "Start Date of current fiscal month", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrentFinancialPeriodStartSet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Start Date of current fiscal month manually set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "WorkItemVersionNonLaborResources", + "label": "Version Non-Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "NonLaborResourceLinkVersion", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "WorkItemVersion" + }, + { + "name": "VersionFixedPriceResources", + "label": "Version Fixed Price Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "FixedPriceResourceLinkVersion", + "relatedTypeName": "FixedPriceResource", + "sourceFieldName": "WorkItemVersion" + }, + { + "name": "VersionLaborResources", + "label": "Version's Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "GenericLaborResourceLinkVersion", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItemVersion" + }, + { + "name": "Children", + "label": "Sub Items", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "WorkItemVersion", + "sourceFieldName": "Parent" + }, + { + "name": "VersionFinancialResources", + "label": "Version Financial Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "GenericResourceEntity", + "sourceFieldName": "WorkItemVersion" + }, + { + "name": "ChildrenVersionObjects", + "label": "Version Sub-Items", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "WorkItemVersion", + "sourceFieldName": "ParentWorkItemVersion" + } + ] + }, + { + "typeName": "WorkItemVersion", + "label": "Work Items Snapshot", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1600, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Versions" + ], + "name": "Version", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "VersionSourceObject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version of", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Due Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "DurationManuallySet", + "presentationType": "Duration", + "label": "Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DurationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Duration Manually Set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkPolicy" + ], + "name": "WorkPolicy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Work Policy", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "TrackStatus" + ], + "name": "TrackStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TrackStatusManuallySet", + "presentationType": "PickList", + "label": "Status", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TrackStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Status Manually Set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Conflicts", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Conflicts Flags", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OnCriticalPath", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Other", + "label": "Belong to Critical Path", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedProgress", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected Progress", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItem" + ], + "name": "Parent", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Work Item", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "WorkItemVersion" + ], + "name": "ParentWorkItemVersion", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Work Item Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedBudgetManuallySet", + "presentationType": "Currency", + "label": "Budgeted Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budgeted Cost Manually Set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualCostManuallySet", + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Cost Manually Set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedRevenueManuallySet", + "presentationType": "Currency", + "label": "Expected Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Expected Revenue Manually Set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualRevenueManuallySet", + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Revenue Manually Set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Profitability", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CommittedDate", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Committed Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "% Complete", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Manager", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Manager", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RemainingForecastCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Cost Non-labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Revenue Non-labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Capex Actual YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Opex Actual YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Capex Budget YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Opex Budget YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual billable hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNonBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual non billable hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Non-labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYPlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Actual Effort", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectCapexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Capex Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectOpexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Opex Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Amount", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Budget", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Template" + ], + "name": "Template", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Template", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Agreed Date for Exchange rate", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Agreed Date for Exchange rate is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TargetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Target Margin", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor & Budget Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor & Actual Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Contribution", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Contribution", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Profitability %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentInvested", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Invested", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Profitability", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLROpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLRCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost OPEX", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost CAPEX", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost OPEX", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost CAPEX", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Non-Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "BudgetStatus" + ], + "name": "BudgetStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Budget Status", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetedHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "BudgetedHoursManuallySet", + "presentationType": "Duration", + "label": "Budgeted Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHoursManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Budgeted Work Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Balance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedPrice", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Price", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Phase" + ], + "name": "Phase", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Phase", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Balance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyRETC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "CurrencyREAC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EAC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "RevenueEarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EV", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingBilling", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Billing", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Time Tracking Effort", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "LaborCostPercentComplete", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "% Complete Labor Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Due Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenueNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Planned Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Earned Value", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "CPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyEAC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "EAC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "SPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyETC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "FixedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "RTCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RTCPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "TCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "TCPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ChargedAmountManuallySet", + "presentationType": "Currency", + "label": "Charged Amount", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ChargedAmountManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Charged Amount Manually Set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PendingTimeTrackingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time Tracking Effort", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Priority", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Priority", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TotalEstimatedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Estimated Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetVariancePercent", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Budget Variance %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Funding", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "FundingManuallySet", + "presentationType": "Currency", + "label": "Funding", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Funding Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Allocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "AllocationManuallySet", + "presentationType": "Currency", + "label": "Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "AllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allocation Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Unallocated", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unallocated", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingGap", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Gap", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SubAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "SubAllocationManuallySet", + "presentationType": "Currency", + "label": "Sub Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SubAllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Sub Allocation Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TotalAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UnusedAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unused Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingAvailable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Available", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingRemaining", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Remaining", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Billed Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Billed Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billed Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Billed Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Billed Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Billed Expenses", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "ChildrenVersionObjects", + "label": "Version Sub-Items", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "WorkItemVersion", + "sourceFieldName": "ParentWorkItemVersion" + }, + { + "name": "WorkItemVersionNonLaborResources", + "label": "Version Non-Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "NonLaborResourceLinkVersion", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "WorkItemVersion" + }, + { + "name": "VersionFixedPriceResources", + "label": "Version Fixed Price Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "FixedPriceResourceLinkVersion", + "relatedTypeName": "FixedPriceResource", + "sourceFieldName": "WorkItemVersion" + }, + { + "name": "VersionLaborResources", + "label": "Version's Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "GenericLaborResourceLinkVersion", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItemVersion" + }, + { + "name": "VersionFinancialResources", + "label": "Version Financial Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "GenericResourceEntity", + "sourceFieldName": "WorkItemVersion" + }, + { + "name": "Children", + "label": "Sub Items", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "WorkItemVersion", + "sourceFieldName": "Parent" + } + ] + }, + { + "typeName": "Versions", + "label": "Version", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83914", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Project" + ], + "name": "Project", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Submitted", + "Name": "Submitted" + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "WorkItemObjects", + "label": "Work Item Snapshots", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "WorkItemVersion", + "sourceFieldName": "Version" + } + ] + }, + { + "typeName": "PhasingResourceTimePhaseVersion", + "label": "Phasing time phase data version", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83915", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FiscalMonth", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Fiscal Month", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "PhasingResourceLinkVersion" + ], + "name": "RelatedLinkVersion", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Versions" + ], + "name": "Version", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "PhasingResourceTimePhase" + ], + "name": "VersionSourceObject", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version of", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "GenPhasingResourceTimePhaseVersion", + "label": "Generic phasing time phase data version", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FiscalMonth", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Fiscal Month", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericPhasingResourceLinkVersion" + ], + "name": "RelatedLinkVersion", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Versions" + ], + "name": "Version", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GenericPhasingResourceTimePhase" + ], + "name": "VersionSourceObject", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version of", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "AssetResourceTimePhaseVersion", + "label": "Asset time phase data version", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83917", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FiscalMonth", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Fiscal Month", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "AssetResourceLinkVersion" + ], + "name": "RelatedLinkVersion", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Versions" + ], + "name": "Version", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "AssetResourceTimePhase" + ], + "name": "VersionSourceObject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version of", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "LaborResourceTimePhaseVersion", + "label": "Labor time phase data version", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83919", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FiscalMonth", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Fiscal Month", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "LaborResourceLinkVersion" + ], + "name": "RelatedLinkVersion", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Versions" + ], + "name": "Version", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GenericLaborResourceTimePhase" + ], + "name": "VersionSourceObject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version of", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "GenericLaborResourceTimePhaseVersion", + "label": "Generic workingf entity time phase data version", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FiscalMonth", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Fiscal Month", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericLaborResourceLinkVersion" + ], + "name": "RelatedLinkVersion", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Versions" + ], + "name": "Version", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GenericLaborResourceTimePhase" + ], + "name": "VersionSourceObject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version of", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Work", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "FixedPriceResourceTimePhaseVersion", + "label": "Fixed price time phase data version", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83921", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FiscalMonth", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Fiscal Month", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "FixedPriceResourceLinkVersion" + ], + "name": "ReferenceToMain", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Versions" + ], + "name": "Version", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "FixedPriceResourceTimePhase" + ], + "name": "VersionSourceObject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version of", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "NonLaborResourceTimePhaseVersion", + "label": "Non-Labor time phase data version", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83923", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FiscalMonth", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Fiscal Month", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkVersion" + ], + "name": "RelatedLinkVersion", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Versions" + ], + "name": "Version", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceTimePhase" + ], + "name": "VersionSourceObject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version of", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ResourceTimePhaseVersion", + "label": "Version Time Phased Data", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FiscalMonth", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Fiscal Month", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ResourceLinkFinancialVersion" + ], + "name": "RelatedLinkVersion", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Versions" + ], + "name": "Version", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ResourceTimePhase" + ], + "name": "VersionSourceObject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Version of", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "PortfolioProjectLink", + "label": "Portfolio Project Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Work Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Portfolio", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Portfolio", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83925", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FundingAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "FundingAmountManuallySet", + "presentationType": "Currency", + "label": "Funding Amount", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FundingAmountManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Funding Amount Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FundingPercentage", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "FundingPercentageManuallySet", + "presentationType": "Numeric", + "label": "Funding %", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FundingPercentageManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Funding Percentage Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "PortfolioProgramLink", + "label": "Portfolio Program Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Work Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Portfolio", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Portfolio", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83926", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FundingAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "FundingAmountManuallySet", + "presentationType": "Currency", + "label": "Funding Amount", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FundingAmountManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Funding Amount Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FundingPercentage", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "FundingPercentageManuallySet", + "presentationType": "Numeric", + "label": "Funding %", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FundingPercentageManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Funding Percentage Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "PortfolioLink", + "label": "Portfolio Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Work Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Portfolio", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Portfolio", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FundingAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "FundingAmountManuallySet", + "presentationType": "Currency", + "label": "Funding Amount", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FundingAmountManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Funding Amount Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FundingPercentage", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "FundingPercentageManuallySet", + "presentationType": "Numeric", + "label": "Funding %", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FundingPercentageManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Funding Percentage Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Portfolio", + "label": "Portfolio", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83927", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.168017.0-34A2AECA10D67DA10855FF14EF9DD1A9335C661F/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "CurrencyType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "FundingBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Budget", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllocatedFunding", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "AllocatedFundingManuallySet", + "presentationType": "Currency", + "label": "Allocated Funding", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingFunding", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Funding", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InvestmentYear", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "seperator1000": "", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Numeric", + "label": "Investment Year", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StartDate", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Start Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EndDate", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "End Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "PortfolioType" + ], + "name": "PortfolioType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "PortfolioState" + ], + "name": "PortfolioState", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/PortfolioState/In Planning", + "Name": "In Planning" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RequestedProjectsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "# Requested Projects", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActiveProjectsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "# Active Projects", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActiveProjectsOnTrackCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "# Projects On Track", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActiveProjectsOffTrackCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "# Projects Off Track", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CompletedProjectsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "# Completed Projects", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FundingGap", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Gap", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CancelledProjectsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "# Cancelled Projects", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SubAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "SubAllocationManuallySet", + "presentationType": "Currency", + "label": "Sub Allocation", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Document" + ], + "name": "DefaultIntegrationPath", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Default Integration Path", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AllocatedFundingManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "ALCTDFNDNGSET", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SubAllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Sub Allocation Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TotalAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Amount", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "UnusedAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unused Allocation", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "BudgetedCostManuallySet", + "presentationType": "Currency", + "label": "Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FundingAvailable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Available", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedCostManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budgeted Cost Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FundingVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualCostManuallySet", + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FundingRemaining", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Remaining", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualCostManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Cost Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DraftProjectsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "# Draft Projects", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TotalProjectsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "#Total Projects", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "PortfolioAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "Programs", + "label": "Programs", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "PortfolioProgramLink", + "relatedTypeName": "Program", + "sourceFieldName": "Portfolio" + }, + { + "name": "Projects", + "label": "Projects", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "PortfolioProjectLink", + "relatedTypeName": "Project", + "sourceFieldName": "Portfolio" + }, + { + "name": "Targets", + "label": "Targets", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Target", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Objectives", + "label": "Objectives", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Objective", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Contributions", + "label": "Contributions", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Contribution", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ProjectsAndPrograms", + "label": "Projects and Programs", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "PortfolioLink", + "relatedTypeName": "GenericProject", + "sourceFieldName": "Portfolio" + }, + { + "name": "AdditionalObjectProperties", + "label": "Overview", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "AdditionalObjectProperties", + "sourceFieldName": "RelatedItem" + } + ] + }, + { + "typeName": "TimesheetApprovalDelegateLink", + "label": "Timesheet Approval Delegate Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "TimesheetApprovalDelegator", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "TimesheetApprovalDelegate", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83928", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EffectiveFrom", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Effective from", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EffectiveTo", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Effective to", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ApprovalDelegateLink", + "label": "Approval Delegate Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EffectiveFrom", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Effective from", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EffectiveTo", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Effective to", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "RateCardVersion", + "label": "Rate Card Version", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83929", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "RateCard" + ], + "name": "RateCard", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Rate Card", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "EffectiveFrom", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Effective from", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "Rates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateCardVersion" + } + ] + }, + { + "typeName": "RateCardItem", + "label": "Rate Card Item", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83930", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "JobAssetType", + "GroupJobAssetType" + ], + "name": "JobTitle", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Job Title", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "RateCard" + ], + "name": "RateCard", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Rate Card", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "UserGroup" + ], + "name": "UserGroup", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Group", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + } + ] + }, + { + "typeName": "RateCard", + "label": "Rate Card", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83931", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Customer" + ], + "name": "Customer", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Customer", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Enabled", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Enabled", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "RateCardVersion" + ], + "name": "ManageVersion", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Manage Version", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "VersionRates", + "label": "Version Rates", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Rate" + }, + { + "name": "Projects", + "label": "Projects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "GenericProject", + "sourceFieldName": "RateCard" + }, + { + "name": "RateCardItems", + "label": "Rate Card Items", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "RateCardItem", + "sourceFieldName": "RateCard" + }, + { + "name": "RateCardVersions", + "label": "Rate Card Versions", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "RateCardVersion", + "sourceFieldName": "RateCard" + } + ] + }, + { + "typeName": "IntegrationNewObjFieldValue", + "label": "Integration New Obj Field Value", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83932", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "EventDefinition", + "IntegrationEventDefRelation" + ], + "name": "Container", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Container", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "EntityMappingID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Entity Mapping ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TargetField", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Target Field", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TargetFieldValue", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Target Field Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TargetFieldType", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Target Field Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SourceObjectField", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Source Object Field", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SourceObjectFieldValue", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Source Object Field Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SourceObjectFieldType", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Source Object Field Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Value", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ValueType", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Value Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "IntegrationEventDefRelation", + "label": "Integration Event Def Relation", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83933", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "EventDefinition" + ], + "name": "Container", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Container", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ConditionID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Condition ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RelationID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Relation ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ShadowEntityMappingID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Shadow Entity Mapping ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EntityMappingID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Entity Mapping ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ObjectToCreate", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Object To Create", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LinkShadowObjectToParent", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Link Shadow Object To Parent", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LinkShadowToParentUsingRelationID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Link Shadow To Parent Using Relation ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDotSeparationFieldsLegit", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Is Dot Separation Fields Legit", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "MapToTargetObject", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Map To Target Object", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "MapNewObjectToTargetObject", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Map New Object To Target Object", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RelationTargetType", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Relation Target Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RelationType", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Relation Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LinkTargetToParentLinkName", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Link Target To Parent Link Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LinkTargetToParentLinkedObjectIs", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Link Target ToParent Linked Object Is", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LogicExpression", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1000, + "presentationType": "Text", + "label": "Logic Expression", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "IntegrationEventSyncCondition", + "label": "Integration Event Sync Condition", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83934", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Index", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Index", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FieldName", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Field", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FieldValue", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Field Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FieldType", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Field Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RightFieldName", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Right Field", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RightFieldValue", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Right Field Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RightFieldType", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Right Field Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Operator", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Operator", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LogicalConditionType", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Logical Condition Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "EventDefinition", + "IntegrationEventDefRelation", + "IntegrationEventSyncCondition" + ], + "name": "Container", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Container", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "EmploymentHistory", + "label": "Employment History", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83935", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkingEntity" + ], + "name": "SourceObject", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Source Object", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing regular rate", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing overtime rate", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "JobAssetType" + ], + "name": "JobTitle", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Job Title", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "UserGroup" + ], + "name": "PrimaryGroup", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Primary Group", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "UCTimePhaseMonthly", + "label": "User Calendar Monthly Time Phase Data", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83936", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkingEntity", + "UserGroup" + ], + "name": "UserOrUserGroup", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "User ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkingHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Working Hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Capacity", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Capacity", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "NonWorkingException", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Non-Working Exception", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapacityCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Capacity Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BillableCapacity", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Potential Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOfWorkingHours", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost of Working Hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOfCalendarException", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost of Calendar Exception", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOfUserWorkingHours", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost of User Working Hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOfOtherException", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost of Other Exception", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOfTotalException", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost of Total Exception", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UserWorkingHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "User Working Hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OtherException", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Other Exception", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TotalException", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Total Exception", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FiscalMonth", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Fiscal Month", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "LoadForMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "StaffTimePhasedDataForMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "WorkItem" + } + ] + }, + { + "typeName": "UCTimePhaseDaily", + "label": "User Calendar Daily Time Phase Data", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83937", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkingEntity", + "UserGroup" + ], + "name": "UserOrUserGroup", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "User ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkingHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Working Hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Capacity", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Capacity", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "NonWorkingException", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Non-Working Exception", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapacityCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Capacity Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BillableCapacity", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Potential Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOfWorkingHours", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost of Working Hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOfCalendarException", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost of Calendar Exception", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOfUserWorkingHours", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost of User Working Hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOfOtherException", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost of Other Exception", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOfTotalException", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost of Total Exception", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UserWorkingHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "User Working Hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OtherException", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Other Exception", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TotalException", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Total Exception", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "LoadFor", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "StaffTimePhasedDataForDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "WorkItem" + } + ] + }, + { + "typeName": "UCTimePhase", + "label": "User Calendar Time Phase Fields", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkingEntity", + "UserGroup" + ], + "name": "UserOrUserGroup", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "User ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkingHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Working Hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Capacity", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Capacity", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "NonWorkingException", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Non-Working Exception", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapacityCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Capacity Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BillableCapacity", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Potential Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOfWorkingHours", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost of Working Hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOfCalendarException", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost of Calendar Exception", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOfUserWorkingHours", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost of User Working Hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOfOtherException", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost of Other Exception", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOfTotalException", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost of Total Exception", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UserWorkingHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "User Working Hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OtherException", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Other Exception", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TotalException", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Total Exception", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "LoadForMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "StaffTimePhasedDataForMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "WorkItem" + }, + { + "name": "LoadFor", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "StaffTimePhasedDataForDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "WorkItem" + } + ] + }, + { + "typeName": "RLTimePhaseMonthly", + "label": "Labor Time Phased Data (Monthly)", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "User", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83939", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "Project", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorlkNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegular", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertime", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPending", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on N/A (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ResourceUtilizationCategory" + ], + "name": "ResourceUtilizationCategory", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Resource Utilization Category", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "WorkOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Non-Billable", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost N/A", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Non-Billable", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue N/A", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkBillableOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkNonBillableOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Non-billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOpexOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "workCapexOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkBillableForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkNonBillableForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Non-billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOpexForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Task Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkCapexForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Task Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FiscalMonth", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Fiscal Month", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Work_CustomerWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work_InternalProjects", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work_Training", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work_PTO", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work_Other", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_CustomerWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_InternalProjects", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_Training", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_PTO", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_Other", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_CustomerWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on Customer Work (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_InternalProjects", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on Internal Projects (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_Training", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on Training (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_PTO", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on PTO (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_Other", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on Other (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_CustomerWork", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_InternalProjects", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_Training", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_PTO", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_Other", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_CustomerWork", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_InternalProjects", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_Training", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_PTO", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_Other", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_CustomerWork", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_InternalProjects", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_Training", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_PTO", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_Other", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_CustomerWork", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_InternalProjects", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_Training", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_PTO", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_Other", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_CustomerWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_InternalProjects", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_Training", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_PTO", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_Other", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_CustomerWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_InternalProjects", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_Training", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_PTO", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_Other", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "RLTimePhaseDaily", + "label": "Labor Time Phased Data (Daily)", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "User", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83941", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "Project", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorlkNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegular", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertime", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPending", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on N/A (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ResourceUtilizationCategory" + ], + "name": "ResourceUtilizationCategory", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Resource Utilization Category", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "WorkOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Non-Billable", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost N/A", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Non-Billable", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue N/A", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkBillableOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkNonBillableOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Non-billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOpexOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "workCapexOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkBillableForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkNonBillableForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Non-billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOpexForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Task Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkCapexForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Task Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work_CustomerWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work_InternalProjects", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work_Training", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work_PTO", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work_Other", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_CustomerWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_InternalProjects", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_Training", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_PTO", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_Other", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_CustomerWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on Customer Work (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_InternalProjects", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on Internal Projects (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_Training", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on Training (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_PTO", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on PTO (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_Other", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on Other (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_CustomerWork", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_InternalProjects", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_Training", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_PTO", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_Other", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_CustomerWork", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_InternalProjects", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_Training", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_PTO", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_Other", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_CustomerWork", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_InternalProjects", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_Training", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_PTO", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_Other", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_CustomerWork", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_InternalProjects", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_Training", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_PTO", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_Other", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_CustomerWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_InternalProjects", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_Training", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_PTO", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_Other", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_CustomerWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_InternalProjects", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_Training", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_PTO", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_Other", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "RLTimePhase", + "label": "Time Phase Fields", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "User", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "Project", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorlkNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegular", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertime", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPending", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on N/A (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ResourceUtilizationCategory" + ], + "name": "ResourceUtilizationCategory", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Resource Utilization Category", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "WorkOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignmentCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedRegularCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Regular Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApprovedOvertimeCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved Overtime Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingNonBillable", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Non-Billable (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingOpex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Opex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualPendingCapex", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Pending Capex (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueNonBillable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Non-Billable", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkBillableOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_None", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkNonBillableOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Non-billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOpexOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "workCapexOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkBillableForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkNonBillableForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Non-billable Task Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOpexForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Task Assignment Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkCapexForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Task Assignment Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_None", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on N/A", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work_CustomerWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work_InternalProjects", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work_Training", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work_PTO", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work_Other", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment on Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_CustomerWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_InternalProjects", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_Training", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_PTO", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectAssignment_Other", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Project Assignment on Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_CustomerWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on Customer Work (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_InternalProjects", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on Internal Projects (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_Training", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on Training (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_PTO", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on PTO (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualApproved_Other", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Approved on Other (h)", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_CustomerWork", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_InternalProjects", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_Training", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_PTO", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget_Other", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_CustomerWork", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_InternalProjects", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_Training", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_PTO", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue_Other", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_CustomerWork", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_InternalProjects", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_Training", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_PTO", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost_Other", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_CustomerWork", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_InternalProjects", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_Training", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_PTO", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue_Other", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_CustomerWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_InternalProjects", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_Training", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_PTO", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentOrig_Other", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Task Assignment on Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_CustomerWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on Customer Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_InternalProjects", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on Internal Projects", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_Training", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on Training", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_PTO", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on PTO", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TaskAssignmentForecast_Other", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Task Assignment Forecast on Other", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ResourceRequestSkillLink", + "label": "Staffing Request Skill", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "ResourceRequest", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Staffing Request", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Skill", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Skill", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83942", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ResourceRequest", + "label": "Staffing Request", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Project", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "ResourceEntity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83943", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Draft", + "Name": "Draft" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "UserGroup" + ], + "name": "Group", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Requested from Resourcing Group", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GeoLocation" + ], + "name": "GeoLocation", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Geo Location", + "defaultValue": { + "id": "/GeoLocation/None", + "Name": "None" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Language" + ], + "name": "Language", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Language", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ProjectRole", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Project Role", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "Skills", + "label": "Skills", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceRequestSkillLink", + "relatedTypeName": "Skill", + "sourceFieldName": "ResourceRequest" + }, + { + "name": "TimePhaseData", + "label": "Time Phased Data", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "RRTimePhase", + "sourceFieldName": "RelatedResourceRequest" + } + ] + }, + { + "typeName": "RRTimePhase", + "label": "Staffing Request Time Phase", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83944", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RequestedWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Requested Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ResourceRequest" + ], + "name": "RelatedResourceRequest", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Staffing Request", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportingPeriod", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Reporting period", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Template", + "label": "Template", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1600, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Being Modified", + "Name": "Being Modified" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "TemplateCategory" + ], + "name": "Category", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "defaultValue": { + "id": "/TemplateCategory/Development", + "Name": "Development" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "WorkItem", + "Document" + ], + "name": "ReferenceToTemplate", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Reference to Template", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83945", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "NonLaborPhasingResource", + "label": "Non-Labor Phasing Resource", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83946", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "defaultValue": { + "id": "/NonLaborResourceLinkCategory/Phasing", + "Name": "Phasing" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "LaborPhasingResource", + "label": "Labor Phasing Resource", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83947", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "defaultValue": { + "id": "/NonLaborResourceLinkCategory/Phasing", + "Name": "Phasing" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "FixedPricePhasingResource", + "label": "Fixed Price Phasing Resource", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83948", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "defaultValue": { + "id": "/NonLaborResourceLinkCategory/Phasing", + "Name": "Phasing" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "AssetPhasingResource", + "label": "Asset Phasing Resource", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83949", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "defaultValue": { + "id": "/NonLaborResourceLinkCategory/Phasing", + "Name": "Phasing" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "PhasingResource", + "label": "Phasing resource", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "FixedPriceResource", + "label": "Fixed price resource", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83950", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "defaultValue": { + "id": "/NonLaborResourceLinkCategory/Fixed Price Item", + "Name": "Fixed Price Item" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "NonLaborResource", + "label": "Non-Labor Resource", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83951", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.167953.0-4E09BCB585D7AC49F2C9D6F9A74BDB7FCD057631/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "NLRRescheduleMode" + ], + "name": "Reschedule", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Reschedule", + "defaultValue": { + "id": "/NLRRescheduleMode/None", + "Name": "None" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "IsNlr3rdPartyCost", + "type": "Boolean", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "3rd Party", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "RelatedWorkItemVersions", + "label": "Related Work Item Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "NonLaborResourceLinkVersion", + "relatedTypeName": "WorkItemVersion", + "sourceFieldName": "NonLaborResource" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "NLRAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "NLROfWorkItems", + "label": "Related Work Items", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "NonLaborResourceLinkAggregated", + "relatedTypeName": "WorkItem", + "sourceFieldName": "NonLaborResource" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + } + ] + }, + { + "typeName": "User", + "label": "User", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DisplayName", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "flags": [], + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83952", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "defaultValue": { + "id": "/NonLaborResourceLinkCategory/Labor", + "Name": "Labor" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Active", + "Name": "Active" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Phase" + ], + "name": "Phase", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Phase", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Internal ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.168038.0-7CFC74B756C68C49700E93601199243C3490B8B8/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TimeZone" + ], + "name": "TimeZone", + "type": "Entity", + "filterable": false, + "sortable": true, + "manuallySetName": "TimeZoneManuallySet", + "presentationType": "PickList", + "label": "Time Zone", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeZoneManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Time Zone Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "LocalCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Local Currency", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ShowLocalCurrencyCode", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Show Local Currency Code", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BusinessAddress", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1024, + "presentationType": "Text", + "label": "Business Address", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CapacityStart", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Capacity Start", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CapacityEnd", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Capacity End", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "JobTitle" + ], + "name": "JobTitle", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "JobTitleManuallySet", + "presentationType": "ReferenceToObject", + "label": "Job Title", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "JobTitleManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Job Title Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "UserGroup" + ], + "name": "RatesGroup", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Rates Group", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TargetUtilization", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Percent", + "label": "Target Utilization", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UserName", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "User Name", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OfficeFax", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Office Fax", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "HomeAddress", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1024, + "presentationType": "Text", + "label": "Home Address", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Region" + ], + "name": "Region", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Region", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastLogin", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last login date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Admin", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Admin", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalUser", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "External User", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "DirectManager", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "DirectManagerManuallySet", + "presentationType": "ReferenceToObject", + "label": "Direct Manager", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AllowEmails", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allow Emails", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SendInvitationMail", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Send an email invitation to this user", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Position", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 100, + "presentationType": "Text", + "label": "Position", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SubscribeToProjectNotifications", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Project Notifications", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Language" + ], + "name": "Language", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "LanguageManuallySet", + "presentationType": "PickList", + "label": "Language", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SuperUser", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Super User", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlanviewUserID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Planview User Id", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Financial", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Financial Permissions", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Location", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Location", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TwitterUserName", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Twitter User Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TwitterLastMessageId", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Twitter Last Message id", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DirectManagerManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Direct Manager Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "GoogleUserName", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Google User Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LanguageManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Language Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FirstName", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "First Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Signature", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Signature", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastName", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Last Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Email", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Email", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OfficePhone", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Office Phone", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "MobilePhone", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Mobile Phone", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "LicenseType" + ], + "name": "LicenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "User Type", + "defaultValue": { + "id": "/LicenseType/TeamMember", + "Name": "TeamMember" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Trial", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Trial", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpirationDate", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Expiration Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ShortDateFormat" + ], + "name": "ShortDateFormat", + "type": "Entity", + "filterable": false, + "sortable": false, + "presentationType": "PickList", + "label": "Short Date Format", + "defaultValue": { + "id": "/ShortDateFormat/dd/MM/yy", + "Name": "dd/MM/yy" + }, + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastLoginIPAddress", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Last Login IP Address", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StopwatchesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Stopwatches", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "LandingPage" + ], + "name": "LandingPage", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "LandingPageManuallySet", + "presentationType": "PickList", + "label": "Landing Page", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LandingPageManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Landing Page Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "DiscussionEmailNotifications" + ], + "name": "EmailNotifications", + "type": "Entity", + "filterable": false, + "sortable": false, + "presentationType": "PickList", + "label": "Notify me", + "defaultValue": { + "id": "/DiscussionEmailNotifications/OnEveryPost", + "Name": "OnEveryPost" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Profile" + ], + "name": "Profile", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Profile", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "NumericFormat" + ], + "name": "NumericFormat", + "type": "Entity", + "filterable": false, + "sortable": false, + "presentationType": "PickList", + "label": "Number Separator", + "defaultValue": { + "id": "/NumericFormat/ThousandsDot_DecimalComma", + "Name": "ThousandsDot_DecimalComma" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Profile" + ], + "name": "MobileProfile", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Mobile Profile", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SharepointOnlineUserName", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Sharepoint Online User Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "UserSyncId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "User Sync ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "UserSyncNotes", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "User Sync Notes", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "UserSyncUpdated", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "User Sync Updated", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TimesheetsExpectedFrom", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Timesheets Expected From", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TimesheetsCompleteUntil", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Timesheets Complete Until", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ScimSyncId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "Scim Sync ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TimesheetApprovalDelegatesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# Timesheet Approval Delegates", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TimesheetApprovalDelegatorsCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# Timesheet Approval Delegators", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LiteAdmin", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Lite Admin", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IntegrationUser", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Integration User", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ScimSyncJobTitle", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "Scim Sync Job Title", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AutoCreatedAsRequester", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Auto-Created As Requester", + "defaultValue": false, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpectedTimesheets" + ], + "name": "ExpectedTimesheets", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Expected Timesheets", + "defaultValue": { + "id": "/ExpectedTimesheets/Daily", + "Name": "Daily" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "MsTeamsUserName", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "MS Teams User Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TechAccountManagerOfCustomers", + "label": "Technical Account Manager of Customers", + "roleLabel": "Customer Technical Account Manager", + "readOnly": false, + "relatedTypeName": "Customer", + "sourceFieldName": "TechnicalAccountManager" + }, + { + "name": "AccountOwnerOfCustomers", + "label": "Account Owner of Customers", + "roleLabel": "Customer Account Owner", + "readOnly": false, + "relatedTypeName": "Customer", + "sourceFieldName": "Owner" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "UsersImFollowing", + "label": "Users following", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "CreatedTimesheets", + "label": "Created Timesheets", + "roleLabel": "Creator", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "CreatedBy" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "MemberOfWorkItems", + "label": "Related Work Items", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "MemberOfGroups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "Group", + "sourceFieldName": "Member" + }, + { + "name": "ApprovedTimesheets", + "label": "Approved Timesheets", + "roleLabel": "Approver", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "ApprovedBy" + }, + { + "name": "OwnedExpenses", + "label": "Owner of Expenses", + "roleLabel": "Owner", + "readOnly": true, + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "Owner" + }, + { + "name": "ExpensesApprovedBy", + "label": "Approved Expenses", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "ApprovedBy" + }, + { + "name": "ApproverOfExpenses", + "label": "Approver of Expenses", + "roleLabel": "Expense Approver", + "readOnly": true, + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "Approver" + }, + { + "name": "OwnerOfIssues", + "label": "Owned Cases", + "roleLabel": "Owner", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "Owner" + }, + { + "name": "AssignedIssues", + "label": "Assigned Cases", + "roleLabel": "Assigned to", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "AssignedTo" + }, + { + "name": "SubmittedIssues", + "label": "Submitted Cases", + "roleLabel": "Submitted by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "SubmittedBy" + }, + { + "name": "EvaluatedIssues", + "label": "Evaluated Cases", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "EvaluatedBy" + }, + { + "name": "OpenedByIssues", + "label": "Opened Cases", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "OpenedBy" + }, + { + "name": "ResolvedIssues", + "label": "Resolved Cases", + "roleLabel": "Resolved by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ResolvedBy" + }, + { + "name": "ClosedByIssues", + "label": "Closed Cases", + "roleLabel": "Closed by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ClosedBy" + }, + { + "name": "RejectedIssues", + "label": "Rejected Cases", + "roleLabel": "Rejected by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "RejectedBy" + }, + { + "name": "ReopenedIssues", + "label": "Reopened Cases", + "roleLabel": "Reopened by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ReopenedBy" + }, + { + "name": "DeferredByIssues", + "label": "Deferred Cases", + "roleLabel": "Deferred by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "DeferredBy" + }, + { + "name": "Issues", + "label": "Member of Cases", + "roleLabel": "Team Member", + "readOnly": true, + "linkTypeName": "IssueTeamMembers", + "relatedTypeName": "Case", + "sourceFieldName": "TeamMember" + }, + { + "name": "ReviewerOfWorkItems", + "label": "Reviewer of Work Items", + "roleLabel": "Reviewer", + "readOnly": true, + "linkTypeName": "ReviewerLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "ManagerOfWorkItems", + "label": "Managed Work Items", + "roleLabel": "Manager", + "readOnly": true, + "linkTypeName": "ManagerResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "MemberOf", + "label": "Member of (Obsolete)", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupHierarchyLink", + "relatedTypeName": "Group", + "sourceFieldName": "Member" + }, + { + "name": "Skills", + "label": "Skills", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SkillLink", + "relatedTypeName": "Skill", + "sourceFieldName": "Member" + }, + { + "name": "ProjectManagerOfProjects", + "label": "Managed Projects", + "roleLabel": "Project Manager", + "readOnly": true, + "relatedTypeName": "GenericProject", + "sourceFieldName": "ProjectManager" + }, + { + "name": "ProjectSponsorOfProjects", + "label": "Sponsored Projects", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "GenericProject", + "sourceFieldName": "ProjectSponsor" + }, + { + "name": "Subordinates", + "label": "Direct Reports", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User", + "sourceFieldName": "DirectManager" + }, + { + "name": "WorkItems", + "label": "Related Work Items (Obsolete)", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "WorkItemIOpenedStopwatch", + "label": "Active Stopwatches", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "Stopwatch", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "RecipientOfEmails", + "label": "Recipient Of Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "EmailRecipient", + "sourceFieldName": "Recipient" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "DirectManagerOfGroups", + "label": "Manager of Groups", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UserGroup", + "sourceFieldName": "DirectManager" + }, + { + "name": "ReportedTimesheets", + "label": "Reported Timesheets", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "ReportedBy" + }, + { + "name": "RestrictedFieldsSet", + "label": "Restricted Fields Set", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RestrictedFieldsSetLink", + "relatedTypeName": "RestrictedFieldsSet", + "sourceFieldName": "MemberEntity" + }, + { + "name": "OwnedProofs", + "label": "Owned Proofs", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Document", + "sourceFieldName": "ProofOwner" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "UserAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "ResourceManagerOfGroups", + "label": "Resource Manager of Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceManagerLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Member" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "ProgramManager", + "label": "Managed Program Components", + "roleLabel": "Program Manager Direct", + "readOnly": true, + "relatedTypeName": "Program", + "sourceFieldName": "ProgramManager" + }, + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + }, + { + "name": "CapacityTimeline", + "label": "User Capacity Records", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "CapacityTimeline", + "sourceFieldName": "CapacityFor" + }, + { + "name": "OwnedWorkItem", + "label": "Owned Work Items", + "roleLabel": "Owner", + "readOnly": true, + "linkTypeName": "OwnerLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "UserOpenProofs", + "label": "Open Proofs", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Document" + }, + { + "name": "ResourceManager", + "label": "Resource Manager", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "User" + }, + { + "name": "RequestedFor", + "label": "Staffing Requests (Work Item)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceRequest", + "relatedTypeName": "GenericProject", + "sourceFieldName": "ResourceEntity" + }, + { + "name": "StaffTimePhasedDataForDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "WorkItem" + }, + { + "name": "StaffTimePhasedDataForMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "WorkItem" + }, + { + "name": "TimesheetApprovalDelegates", + "label": "Timesheet Approval Delegates", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TimesheetApprovalDelegateLink", + "relatedTypeName": "User", + "sourceFieldName": "TimesheetApprovalDelegator" + }, + { + "name": "TimesheetApprovalDelegators", + "label": "Timesheet Approval Delegators", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "TimesheetApprovalDelegateLink", + "relatedTypeName": "User", + "sourceFieldName": "TimesheetApprovalDelegate" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "AssignedWorkItems", + "label": "Assigned Work Items", + "roleLabel": "All Resources", + "readOnly": true, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "CapacityOfUserDaily", + "label": "Capacity Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseDaily", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "CapacityOfUserMonthly", + "label": "Capacity Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseMonthly", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "LoadFor", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "LoadForMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + } + ] + }, + { + "typeName": "UserPlaceholder", + "label": "User Placeholder", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DisplayName", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83953", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "defaultValue": { + "id": "/NonLaborResourceLinkCategory/Labor", + "Name": "Labor" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Active", + "Name": "Active" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Internal ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.168039.0-613BD513C6468A99C0CAF8A98B7F68BD39EA1F3C/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "LocalCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Local Currency", + "defaultValue": { + "id": "/CurrencyType/USD", + "Name": "USD" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ShowLocalCurrencyCode", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Show Local Currency Code", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BusinessAddress", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1024, + "presentationType": "Text", + "label": "Business Address", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "JobTitle" + ], + "name": "JobTitle", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "JobTitleManuallySet", + "presentationType": "ReferenceToObject", + "label": "Job Title", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "JobTitleManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Job Title Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "UserGroup" + ], + "name": "RatesGroup", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Rates Group", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TargetUtilization", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Percent", + "label": "Target Utilization", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "AssignedWorkItems", + "label": "Assigned Work Items", + "roleLabel": "Resource", + "readOnly": true, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "CapacityOfUserDaily", + "label": "Capacity Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseDaily", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "CapacityOfUserMonthly", + "label": "Capacity Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseMonthly", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "LoadFor", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "LoadForMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + } + ] + }, + { + "typeName": "GenericUser", + "label": "User Resources", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DisplayName", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Internal ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TimeZone" + ], + "name": "TimeZone", + "type": "Entity", + "filterable": false, + "sortable": true, + "manuallySetName": "TimeZoneManuallySet", + "presentationType": "PickList", + "label": "Time Zone", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeZoneManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Time Zone Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "LocalCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Local Currency", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ShowLocalCurrencyCode", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Show Local Currency Code", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BusinessAddress", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1024, + "presentationType": "Text", + "label": "Business Address", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CapacityStart", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Capacity Start", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CapacityEnd", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Capacity End", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "JobTitle" + ], + "name": "JobTitle", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "JobTitleManuallySet", + "presentationType": "ReferenceToObject", + "label": "Job Title", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "JobTitleManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Job Title Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "UserGroup" + ], + "name": "RatesGroup", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Rates Group", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TargetUtilization", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Percent", + "label": "Target Utilization", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "AssignedWorkItems", + "label": "Assigned Work Items", + "roleLabel": "Resource", + "readOnly": true, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "CapacityOfUserDaily", + "label": "Capacity Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseDaily", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "CapacityOfUserMonthly", + "label": "Capacity Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseMonthly", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "LoadFor", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "LoadForMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "TechAccountManagerOfCustomers", + "label": "Technical Account Manager of Customers", + "roleLabel": "Customer Technical Account Manager", + "readOnly": false, + "relatedTypeName": "Customer", + "sourceFieldName": "TechnicalAccountManager" + }, + { + "name": "AccountOwnerOfCustomers", + "label": "Account Owner of Customers", + "roleLabel": "Customer Account Owner", + "readOnly": false, + "relatedTypeName": "Customer", + "sourceFieldName": "Owner" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "UsersImFollowing", + "label": "Users following", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "CreatedTimesheets", + "label": "Created Timesheets", + "roleLabel": "Creator", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "CreatedBy" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "MemberOfWorkItems", + "label": "Related Work Items", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "ApprovedTimesheets", + "label": "Approved Timesheets", + "roleLabel": "Approver", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "ApprovedBy" + }, + { + "name": "OwnedExpenses", + "label": "Owner of Expenses", + "roleLabel": "Owner", + "readOnly": true, + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "Owner" + }, + { + "name": "ExpensesApprovedBy", + "label": "Approved Expenses", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "ApprovedBy" + }, + { + "name": "ApproverOfExpenses", + "label": "Approver of Expenses", + "roleLabel": "Expense Approver", + "readOnly": true, + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "Approver" + }, + { + "name": "OwnerOfIssues", + "label": "Owned Cases", + "roleLabel": "Owner", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "Owner" + }, + { + "name": "AssignedIssues", + "label": "Assigned Cases", + "roleLabel": "Assigned to", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "AssignedTo" + }, + { + "name": "SubmittedIssues", + "label": "Submitted Cases", + "roleLabel": "Submitted by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "SubmittedBy" + }, + { + "name": "EvaluatedIssues", + "label": "Evaluated Cases", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "EvaluatedBy" + }, + { + "name": "OpenedByIssues", + "label": "Opened Cases", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "OpenedBy" + }, + { + "name": "ResolvedIssues", + "label": "Resolved Cases", + "roleLabel": "Resolved by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ResolvedBy" + }, + { + "name": "ClosedByIssues", + "label": "Closed Cases", + "roleLabel": "Closed by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ClosedBy" + }, + { + "name": "RejectedIssues", + "label": "Rejected Cases", + "roleLabel": "Rejected by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "RejectedBy" + }, + { + "name": "ReopenedIssues", + "label": "Reopened Cases", + "roleLabel": "Reopened by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ReopenedBy" + }, + { + "name": "DeferredByIssues", + "label": "Deferred Cases", + "roleLabel": "Deferred by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "DeferredBy" + }, + { + "name": "Issues", + "label": "Member of Cases", + "roleLabel": "Team Member", + "readOnly": true, + "linkTypeName": "IssueTeamMembers", + "relatedTypeName": "Case", + "sourceFieldName": "TeamMember" + }, + { + "name": "ReviewerOfWorkItems", + "label": "Reviewer of Work Items", + "roleLabel": "Reviewer", + "readOnly": true, + "linkTypeName": "ReviewerLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "ManagerOfWorkItems", + "label": "Managed Work Items", + "roleLabel": "Manager", + "readOnly": true, + "linkTypeName": "ManagerResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "MemberOf", + "label": "Member of (Obsolete)", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupHierarchyLink", + "relatedTypeName": "Group", + "sourceFieldName": "Member" + }, + { + "name": "Skills", + "label": "Skills", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SkillLink", + "relatedTypeName": "Skill", + "sourceFieldName": "Member" + }, + { + "name": "ProjectManagerOfProjects", + "label": "Managed Projects", + "roleLabel": "Project Manager", + "readOnly": true, + "relatedTypeName": "GenericProject", + "sourceFieldName": "ProjectManager" + }, + { + "name": "ProjectSponsorOfProjects", + "label": "Sponsored Projects", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "GenericProject", + "sourceFieldName": "ProjectSponsor" + }, + { + "name": "Subordinates", + "label": "Direct Reports", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User", + "sourceFieldName": "DirectManager" + }, + { + "name": "WorkItems", + "label": "Related Work Items (Obsolete)", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "WorkItemIOpenedStopwatch", + "label": "Active Stopwatches", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "Stopwatch", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "RecipientOfEmails", + "label": "Recipient Of Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "EmailRecipient", + "sourceFieldName": "Recipient" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "DirectManagerOfGroups", + "label": "Manager of Groups", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UserGroup", + "sourceFieldName": "DirectManager" + }, + { + "name": "ReportedTimesheets", + "label": "Reported Timesheets", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "ReportedBy" + }, + { + "name": "RestrictedFieldsSet", + "label": "Restricted Fields Set", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RestrictedFieldsSetLink", + "relatedTypeName": "RestrictedFieldsSet", + "sourceFieldName": "MemberEntity" + }, + { + "name": "OwnedProofs", + "label": "Owned Proofs", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Document", + "sourceFieldName": "ProofOwner" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "UserAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "ResourceManagerOfGroups", + "label": "Resource Manager of Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceManagerLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Member" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "ProgramManager", + "label": "Managed Program Components", + "roleLabel": "Program Manager Direct", + "readOnly": true, + "relatedTypeName": "Program", + "sourceFieldName": "ProgramManager" + }, + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + }, + { + "name": "CapacityTimeline", + "label": "Capacity Timeline", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "CapacityTimeline", + "sourceFieldName": "CapacityFor" + }, + { + "name": "OwnedWorkItem", + "label": "Owned Work Items", + "roleLabel": "Owner", + "readOnly": true, + "linkTypeName": "OwnerLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "UserOpenProofs", + "label": "Open Proofs", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Document" + }, + { + "name": "ResourceManager", + "label": "Resource Manager", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "User" + }, + { + "name": "RequestedFor", + "label": "Staffing Requests (Work Item)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceRequest", + "relatedTypeName": "GenericProject", + "sourceFieldName": "ResourceEntity" + }, + { + "name": "StaffTimePhasedDataForDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "WorkItem" + }, + { + "name": "StaffTimePhasedDataForMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "WorkItem" + }, + { + "name": "TimesheetApprovalDelegates", + "label": "Timesheet Approval Delegates", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TimesheetApprovalDelegateLink", + "relatedTypeName": "User", + "sourceFieldName": "TimesheetApprovalDelegator" + }, + { + "name": "TimesheetApprovalDelegators", + "label": "Timesheet Approval Delegators", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "TimesheetApprovalDelegateLink", + "relatedTypeName": "User", + "sourceFieldName": "TimesheetApprovalDelegate" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + } + ] + }, + { + "typeName": "AssetPlaceholder", + "label": "Asset Placeholder", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DisplayName", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83954", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "defaultValue": { + "id": "/NonLaborResourceLinkCategory/Labor", + "Name": "Labor" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Active", + "Name": "Active" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Internal ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.168042.0-D6BD0F9DB2322FFF125E4CEEB05F27C4DD56628A/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "LocalCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Local Currency", + "defaultValue": { + "id": "/CurrencyType/USD", + "Name": "USD" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ShowLocalCurrencyCode", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Show Local Currency Code", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BusinessAddress", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1024, + "presentationType": "Text", + "label": "Business Address", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "AssetType" + ], + "name": "JobTitle", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Asset Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "UserGroup" + ], + "name": "RatesGroup", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Rates Group", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TargetUtilization", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Percent", + "label": "Target Utilization", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "AssignedWorkItems", + "label": "Assigned Work Items", + "roleLabel": "Resource", + "readOnly": true, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "CapacityOfUserDaily", + "label": "Capacity Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseDaily", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "CapacityOfUserMonthly", + "label": "Capacity Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseMonthly", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "LoadFor", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "LoadForMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + } + ] + }, + { + "typeName": "Asset", + "label": "Asset", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DisplayName", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83955", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "defaultValue": { + "id": "/NonLaborResourceLinkCategory/Labor", + "Name": "Labor" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Active", + "Name": "Active" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Internal ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.168041.0-35F319DD77FD1A46E65058E3F694F5C20E51EC4B/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TimeZone" + ], + "name": "TimeZone", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TimeZoneManuallySet", + "presentationType": "PickList", + "label": "Time Zone", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeZoneManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Time Zone Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "LocalCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Local Currency", + "defaultValue": { + "id": "/CurrencyType/USD", + "Name": "USD" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ShowLocalCurrencyCode", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Show Local Currency Code", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BusinessAddress", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1024, + "presentationType": "Text", + "label": "Business Address", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CapacityStart", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Capacity Start", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CapacityEnd", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Capacity End", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "AssetType" + ], + "name": "JobTitle", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Asset Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "UserGroup" + ], + "name": "RatesGroup", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Rates Group", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TargetUtilization", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Percent", + "label": "Target Utilization", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "ReportedTimesheets", + "label": "Reported Timesheets", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "ReportedBy" + }, + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + }, + { + "name": "OwnerOfIssues", + "label": "Owned Cases", + "roleLabel": "Owner", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "Owner" + }, + { + "name": "AssignedIssues", + "label": "Assigned Cases", + "roleLabel": "Assigned to", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "AssignedTo" + }, + { + "name": "SubmittedIssues", + "label": "Submitted Cases", + "roleLabel": "Submitted by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "SubmittedBy" + }, + { + "name": "EvaluatedIssues", + "label": "Evaluated Cases", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "EvaluatedBy" + }, + { + "name": "OpenedByIssues", + "label": "Opened Cases", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "OpenedBy" + }, + { + "name": "ResolvedIssues", + "label": "Resolved Cases", + "roleLabel": "Resolved by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ResolvedBy" + }, + { + "name": "ClosedByIssues", + "label": "Closed Cases", + "roleLabel": "Closed by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ClosedBy" + }, + { + "name": "RejectedIssues", + "label": "Rejected Cases", + "roleLabel": "Rejected by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "RejectedBy" + }, + { + "name": "ReopenedIssues", + "label": "Reopened Cases", + "roleLabel": "Reopened by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ReopenedBy" + }, + { + "name": "DeferredByIssues", + "label": "Deferred Cases", + "roleLabel": "Deferred by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "DeferredBy" + }, + { + "name": "MemberOfGroups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Member" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "CapacityOfUserDaily", + "label": "Capacity Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseDaily", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "CapacityOfUserMonthly", + "label": "Capacity Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseMonthly", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "CapacityTimeline", + "label": "Capacity Timeline", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "CapacityTimeline", + "sourceFieldName": "CapacityFor" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "AssetAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "AssignedWorkItems", + "label": "Assigned Work Items", + "roleLabel": "Resource", + "readOnly": true, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "LoadFor", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "LoadForMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + } + ] + }, + { + "typeName": "GenericAsset", + "label": "Asset Resources", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DisplayName", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Internal ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TimeZone" + ], + "name": "TimeZone", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TimeZoneManuallySet", + "presentationType": "PickList", + "label": "Time Zone", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeZoneManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Time Zone Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "LocalCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Local Currency", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ShowLocalCurrencyCode", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Show Local Currency Code", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BusinessAddress", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1024, + "presentationType": "Text", + "label": "Business Address", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CapacityStart", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Capacity Start", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CapacityEnd", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Capacity End", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "AssetType" + ], + "name": "JobTitle", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Asset Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "UserGroup" + ], + "name": "RatesGroup", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Rates Group", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TargetUtilization", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Percent", + "label": "Target Utilization", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "AssignedWorkItems", + "label": "Assigned Work Items", + "roleLabel": "Resource", + "readOnly": true, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "CapacityOfUserDaily", + "label": "Capacity Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseDaily", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "CapacityOfUserMonthly", + "label": "Capacity Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseMonthly", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "LoadFor", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "LoadForMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "ReportedTimesheets", + "label": "Reported Timesheets", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "ReportedBy" + }, + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + }, + { + "name": "OwnerOfIssues", + "label": "Owned Cases", + "roleLabel": "Owner", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "Owner" + }, + { + "name": "AssignedIssues", + "label": "Assigned Cases", + "roleLabel": "Assigned to", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "AssignedTo" + }, + { + "name": "SubmittedIssues", + "label": "Submitted Cases", + "roleLabel": "Submitted by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "SubmittedBy" + }, + { + "name": "EvaluatedIssues", + "label": "Evaluated Cases", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "EvaluatedBy" + }, + { + "name": "OpenedByIssues", + "label": "Opened Cases", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "OpenedBy" + }, + { + "name": "ResolvedIssues", + "label": "Resolved Cases", + "roleLabel": "Resolved by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ResolvedBy" + }, + { + "name": "ClosedByIssues", + "label": "Closed Cases", + "roleLabel": "Closed by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ClosedBy" + }, + { + "name": "RejectedIssues", + "label": "Rejected Cases", + "roleLabel": "Rejected by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "RejectedBy" + }, + { + "name": "ReopenedIssues", + "label": "Reopened Cases", + "roleLabel": "Reopened by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ReopenedBy" + }, + { + "name": "DeferredByIssues", + "label": "Deferred Cases", + "roleLabel": "Deferred by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "DeferredBy" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "CapacityTimeline", + "label": "Capacity Timeline", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "CapacityTimeline", + "sourceFieldName": "CapacityFor" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "AssetAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + } + ] + }, + { + "typeName": "WorkingEntity", + "label": "Working Entity", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DisplayName", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Internal ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TimeZone" + ], + "name": "TimeZone", + "type": "Entity", + "filterable": false, + "sortable": true, + "manuallySetName": "TimeZoneManuallySet", + "presentationType": "PickList", + "label": "Time Zone", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeZoneManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Time Zone Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "LocalCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Local Currency", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ShowLocalCurrencyCode", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Show Local Currency Code", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BusinessAddress", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1024, + "presentationType": "Text", + "label": "Business Address", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CapacityStart", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Capacity Start", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CapacityEnd", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Capacity End", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "JobAssetType" + ], + "name": "JobTitle", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Job Title", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "UserGroup" + ], + "name": "RatesGroup", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Rates Group", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TargetUtilization", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Percent", + "label": "Target Utilization", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "CapacityOfUserDaily", + "label": "Capacity Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseDaily", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "CapacityOfUserMonthly", + "label": "Capacity Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseMonthly", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "LoadFor", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "LoadForMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "AssignedWorkItems", + "label": "Assigned Work Items", + "roleLabel": "Resource", + "readOnly": true, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "TechAccountManagerOfCustomers", + "label": "Technical Account Manager of Customers", + "roleLabel": "Customer Technical Account Manager", + "readOnly": false, + "relatedTypeName": "Customer", + "sourceFieldName": "TechnicalAccountManager" + }, + { + "name": "AccountOwnerOfCustomers", + "label": "Account Owner of Customers", + "roleLabel": "Customer Account Owner", + "readOnly": false, + "relatedTypeName": "Customer", + "sourceFieldName": "Owner" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "UsersImFollowing", + "label": "Users following", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "CreatedTimesheets", + "label": "Created Timesheets", + "roleLabel": "Creator", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "CreatedBy" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "MemberOfWorkItems", + "label": "Related Work Items", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "ApprovedTimesheets", + "label": "Approved Timesheets", + "roleLabel": "Approver", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "ApprovedBy" + }, + { + "name": "OwnedExpenses", + "label": "Owner of Expenses", + "roleLabel": "Owner", + "readOnly": true, + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "Owner" + }, + { + "name": "ExpensesApprovedBy", + "label": "Approved Expenses", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "ApprovedBy" + }, + { + "name": "ApproverOfExpenses", + "label": "Approver of Expenses", + "roleLabel": "Expense Approver", + "readOnly": true, + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "Approver" + }, + { + "name": "OwnerOfIssues", + "label": "Owned Cases", + "roleLabel": "Owner", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "Owner" + }, + { + "name": "AssignedIssues", + "label": "Assigned Cases", + "roleLabel": "Assigned to", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "AssignedTo" + }, + { + "name": "SubmittedIssues", + "label": "Submitted Cases", + "roleLabel": "Submitted by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "SubmittedBy" + }, + { + "name": "EvaluatedIssues", + "label": "Evaluated Cases", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "EvaluatedBy" + }, + { + "name": "OpenedByIssues", + "label": "Opened Cases", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "OpenedBy" + }, + { + "name": "ResolvedIssues", + "label": "Resolved Cases", + "roleLabel": "Resolved by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ResolvedBy" + }, + { + "name": "ClosedByIssues", + "label": "Closed Cases", + "roleLabel": "Closed by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ClosedBy" + }, + { + "name": "RejectedIssues", + "label": "Rejected Cases", + "roleLabel": "Rejected by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "RejectedBy" + }, + { + "name": "ReopenedIssues", + "label": "Reopened Cases", + "roleLabel": "Reopened by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ReopenedBy" + }, + { + "name": "DeferredByIssues", + "label": "Deferred Cases", + "roleLabel": "Deferred by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "DeferredBy" + }, + { + "name": "Issues", + "label": "Member of Cases", + "roleLabel": "Team Member", + "readOnly": true, + "linkTypeName": "IssueTeamMembers", + "relatedTypeName": "Case", + "sourceFieldName": "TeamMember" + }, + { + "name": "ReviewerOfWorkItems", + "label": "Reviewer of Work Items", + "roleLabel": "Reviewer", + "readOnly": true, + "linkTypeName": "ReviewerLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "ManagerOfWorkItems", + "label": "Managed Work Items", + "roleLabel": "Manager", + "readOnly": true, + "linkTypeName": "ManagerResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "MemberOf", + "label": "Member of (Obsolete)", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupHierarchyLink", + "relatedTypeName": "Group", + "sourceFieldName": "Member" + }, + { + "name": "Skills", + "label": "Skills", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SkillLink", + "relatedTypeName": "Skill", + "sourceFieldName": "Member" + }, + { + "name": "ProjectManagerOfProjects", + "label": "Managed Projects", + "roleLabel": "Project Manager", + "readOnly": true, + "relatedTypeName": "GenericProject", + "sourceFieldName": "ProjectManager" + }, + { + "name": "ProjectSponsorOfProjects", + "label": "Sponsored Projects", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "GenericProject", + "sourceFieldName": "ProjectSponsor" + }, + { + "name": "Subordinates", + "label": "Direct Reports", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User", + "sourceFieldName": "DirectManager" + }, + { + "name": "WorkItems", + "label": "Related Work Items (Obsolete)", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "WorkItemIOpenedStopwatch", + "label": "Active Stopwatches", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "Stopwatch", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "RecipientOfEmails", + "label": "Recipient Of Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "EmailRecipient", + "sourceFieldName": "Recipient" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "DirectManagerOfGroups", + "label": "Manager of Groups", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UserGroup", + "sourceFieldName": "DirectManager" + }, + { + "name": "ReportedTimesheets", + "label": "Reported Timesheets", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "ReportedBy" + }, + { + "name": "RestrictedFieldsSet", + "label": "Restricted Fields Set", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RestrictedFieldsSetLink", + "relatedTypeName": "RestrictedFieldsSet", + "sourceFieldName": "MemberEntity" + }, + { + "name": "OwnedProofs", + "label": "Owned Proofs", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Document", + "sourceFieldName": "ProofOwner" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "UserAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "ResourceManagerOfGroups", + "label": "Resource Manager of Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceManagerLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Member" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "ProgramManager", + "label": "Managed Program Components", + "roleLabel": "Program Manager Direct", + "readOnly": true, + "relatedTypeName": "Program", + "sourceFieldName": "ProgramManager" + }, + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + }, + { + "name": "CapacityTimeline", + "label": "Capacity Timeline", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "CapacityTimeline", + "sourceFieldName": "CapacityFor" + }, + { + "name": "OwnedWorkItem", + "label": "Owned Work Items", + "roleLabel": "Owner", + "readOnly": true, + "linkTypeName": "OwnerLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "UserOpenProofs", + "label": "Open Proofs", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Document" + }, + { + "name": "ResourceManager", + "label": "Resource Manager", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "User" + }, + { + "name": "RequestedFor", + "label": "Staffing Requests (Work Item)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceRequest", + "relatedTypeName": "GenericProject", + "sourceFieldName": "ResourceEntity" + }, + { + "name": "StaffTimePhasedDataForDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "WorkItem" + }, + { + "name": "StaffTimePhasedDataForMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "WorkItem" + }, + { + "name": "TimesheetApprovalDelegates", + "label": "Timesheet Approval Delegates", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TimesheetApprovalDelegateLink", + "relatedTypeName": "User", + "sourceFieldName": "TimesheetApprovalDelegator" + }, + { + "name": "TimesheetApprovalDelegators", + "label": "Timesheet Approval Delegators", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "TimesheetApprovalDelegateLink", + "relatedTypeName": "User", + "sourceFieldName": "TimesheetApprovalDelegate" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + } + ] + }, + { + "typeName": "Profile", + "label": "Profile", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83956", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "defaultValue": { + "id": "/NonLaborResourceLinkCategory/Labor", + "Name": "Labor" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.185006.0-1B4DB91631E421A01431C171B6B50D762EC43101/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "LandingPage" + ], + "name": "LandingPage", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Landing Page", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CustomCss", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Custom CSS", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllowFileDownloads", + "type": "Boolean", + "filterable": false, + "sortable": false, + "presentationType": "Checkbox", + "label": "Allow File Downloads from default File Viewer", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "ProfileUserGroups", + "label": "Profile Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ProfileLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + } + ] + }, + { + "typeName": "AssetType", + "label": "Asset Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83957", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "defaultValue": { + "id": "/NonLaborResourceLinkCategory/Labor", + "Name": "Labor" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing regular rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing overtime rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "Assets", + "label": "Job Asset Type Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "GenericAsset", + "sourceFieldName": "JobTitle" + }, + { + "name": "JobTitleMembers", + "label": "Asset Type Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + }, + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + }, + { + "name": "GroupMembersAndPlaceholders", + "label": "Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "GroupJobAssetType", + "sourceFieldName": "Container" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceGroupEntityAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + } + ] + }, + { + "typeName": "JobTitle", + "label": "Job Title", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83958", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "defaultValue": { + "id": "/NonLaborResourceLinkCategory/Labor", + "Name": "Labor" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing regular rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing overtime rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "WorkItems", + "label": "Related Work Items (Obsolete)", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLink", + "relatedTypeName": "GenericProject", + "sourceFieldName": "Resource" + }, + { + "name": "ProvidesRateFor", + "label": "Projects", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "JobTitleRateLink", + "relatedTypeName": "GenericProject", + "sourceFieldName": "Resource" + }, + { + "name": "StaffTimePhasedDataForDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "GenericProject" + }, + { + "name": "StaffTimePhasedDataForMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "GenericProject" + }, + { + "name": "RequestedFor", + "label": "Staffing Requests (Work Item)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceRequest", + "relatedTypeName": "GenericProject", + "sourceFieldName": "ResourceEntity" + }, + { + "name": "JobTitleMembers", + "label": "Job Title Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + }, + { + "name": "Users", + "label": "Job Title Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "GenericUser", + "sourceFieldName": "JobTitle" + }, + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + }, + { + "name": "GroupMembersAndPlaceholders", + "label": "Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "GroupJobAssetType", + "sourceFieldName": "Container" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceGroupEntityAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + } + ] + }, + { + "typeName": "JobAssetType", + "label": "Job Asset Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing regular rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing overtime rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + }, + { + "name": "GroupMembersAndPlaceholders", + "label": "Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "GroupJobAssetType", + "sourceFieldName": "Container" + }, + { + "name": "WorkingEntites", + "label": "Job Asset Type Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "WorkingEntity", + "sourceFieldName": "JobTitle" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceGroupEntityAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "JobTitleMembers", + "label": "Job Title Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "WorkItems", + "label": "Related Work Items (Obsolete)", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLink", + "relatedTypeName": "GenericProject", + "sourceFieldName": "Resource" + }, + { + "name": "ProvidesRateFor", + "label": "Projects", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "JobTitleRateLink", + "relatedTypeName": "GenericProject", + "sourceFieldName": "Resource" + }, + { + "name": "StaffTimePhasedDataForDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "GenericProject" + }, + { + "name": "StaffTimePhasedDataForMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "GenericProject" + }, + { + "name": "RequestedFor", + "label": "Staffing Requests (Work Item)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceRequest", + "relatedTypeName": "GenericProject", + "sourceFieldName": "ResourceEntity" + } + ] + }, + { + "typeName": "GroupAssetType", + "label": "Group Asset Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83959", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "defaultValue": { + "id": "/NonLaborResourceLinkCategory/Labor", + "Name": "Labor" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Active", + "Name": "Active" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing regular rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing overtime rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "UserGroup" + ], + "name": "Group", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Group", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "AssetType" + ], + "name": "AssetType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Job Title", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + }, + { + "name": "MemberOfGroups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "ResourceGroupEntity", + "sourceFieldName": "Member" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceGroupEntityAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + } + ] + }, + { + "typeName": "JobTitleInGroup", + "label": "Group Job Title", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83960", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "defaultValue": { + "id": "/NonLaborResourceLinkCategory/Labor", + "Name": "Labor" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Active", + "Name": "Active" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing regular rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing overtime rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "UserGroup" + ], + "name": "Group", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Group", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "JobTitle" + ], + "name": "JobTitle", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Job Title", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "LoadFor", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "LoadForMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "AssignedWorkItems", + "label": "Assigned Work Items", + "roleLabel": "Resource", + "readOnly": true, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "StaffTimePhasedDataForDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "WorkItem" + }, + { + "name": "StaffTimePhasedDataForMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "WorkItem" + }, + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + }, + { + "name": "MemberOfGroups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "ResourceGroupEntity", + "sourceFieldName": "Member" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceGroupEntityAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + } + ] + }, + { + "typeName": "GroupJobAssetType", + "label": "Group Job Asset Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing regular rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing overtime rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "UserGroup" + ], + "name": "Group", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Group", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "JobAssetType" + ], + "name": "JobTitle", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Job Title", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + }, + { + "name": "MemberOfGroups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "ResourceGroupEntity", + "sourceFieldName": "Member" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceGroupEntityAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "LoadFor", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "LoadForMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "AssignedWorkItems", + "label": "Assigned Work Items", + "roleLabel": "Resource", + "readOnly": true, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "StaffTimePhasedDataForDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "WorkItem" + }, + { + "name": "StaffTimePhasedDataForMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "WorkItem" + } + ] + }, + { + "typeName": "DiscussionGroup", + "label": "Discussion Group", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83961", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "defaultValue": { + "id": "/NonLaborResourceLinkCategory/Labor", + "Name": "Labor" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Owner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Direct Manager", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CustomCss", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Custom CSS", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PostsCount", + "type": "Long", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "ShowNoZero", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Posts", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "DiscussionEmailNotifications" + ], + "name": "EmailNotifications", + "type": "Entity", + "filterable": false, + "sortable": false, + "presentationType": "PickList", + "label": "Notify me", + "defaultValue": { + "id": "/DiscussionEmailNotifications/OnEveryPost", + "Name": "OnEveryPost" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Public", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Public", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.490791.0-3C69F483FE5AC444F6176E13CC575EA20DCB50E2/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NotifyUsers" + ], + "name": "NotifyUsers", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Group invite email", + "defaultValue": { + "id": "/NotifyUsers/All", + "Name": "All" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "RecipientOfEmails", + "label": "Recipient Of Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "EmailRecipient", + "sourceFieldName": "Recipient" + }, + { + "name": "GroupMembersAndPlaceholders", + "label": "Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "User", + "sourceFieldName": "Container" + }, + { + "name": "Projects", + "label": "Projects", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupProjectLink", + "relatedTypeName": "GenericProject", + "sourceFieldName": "Group" + }, + { + "name": "Tasks", + "label": "Tasks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupTaskLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Group" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCustomerLink", + "relatedTypeName": "Customer", + "sourceFieldName": "Group" + }, + { + "name": "Cases", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Case", + "sourceFieldName": "Group" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicGroupLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "IssuesForGroup", + "label": "Issues", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Issue", + "sourceFieldName": "Group" + }, + { + "name": "RisksForGroup", + "label": "Risks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Risk", + "sourceFieldName": "Group" + }, + { + "name": "BugsForGroup", + "label": "Bugs", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Bug", + "sourceFieldName": "Group" + }, + { + "name": "EnhancementRequestForGroup", + "label": "Enhancement Requests", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "EnhancementRequest", + "sourceFieldName": "Group" + }, + { + "name": "UserGroupMembers", + "label": "User Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "User", + "sourceFieldName": "Container" + }, + { + "name": "AssetGroupMembers", + "label": "Asset Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Container" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceGroupEntityAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + } + ] + }, + { + "typeName": "UserGroup", + "label": "User Group", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83962", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "defaultValue": { + "id": "/NonLaborResourceLinkCategory/Labor", + "Name": "Labor" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SubGroupsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Sub-items", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "DirectManager", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Direct Manager", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CustomCss", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Custom CSS", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OrganizationUnit", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Organizational Unit", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TimeZone" + ], + "name": "TimeZone", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Time Zone", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Language" + ], + "name": "Language", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Language", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "LandingPage" + ], + "name": "LandingPage", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Landing Page", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PostsCount", + "type": "Long", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "ShowNoZero", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Posts", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "DiscussionEmailNotifications" + ], + "name": "EmailNotifications", + "type": "Entity", + "filterable": false, + "sortable": false, + "presentationType": "PickList", + "label": "Notify me", + "defaultValue": { + "id": "/DiscussionEmailNotifications/OnEveryPost", + "Name": "OnEveryPost" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Public", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Public", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.12304.0-19B120248F667B3CC8AA414E6EF0D737A4E6922F/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Profile" + ], + "name": "Profile", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Profile", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Profile" + ], + "name": "MobileProfile", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Mobile Profile", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "UserSyncId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "User Sync ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "UserSyncNotes", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "User Sync Notes", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "UserSyncUpdated", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "User Sync Updated", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StaffingRequestRequired", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "StaffingRequestRequiredManSet", + "presentationType": "Checkbox", + "label": "Staffing Request Required", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StaffingRequestRequiredManSet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Staffing Request Required Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourcingGroup", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resourcing Group", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ScimSyncId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "Scim Sync ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing regular rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing overtime rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "SubGroups", + "label": "Sub Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SubGroupHierarchyLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Container" + }, + { + "name": "ParentGroups", + "label": "Member of", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SubGroupHierarchyLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Member" + }, + { + "name": "RecipientOfEmails", + "label": "Recipient Of Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "EmailRecipient", + "sourceFieldName": "Recipient" + }, + { + "name": "Members", + "label": "Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupHierarchyLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + }, + { + "name": "MemberOf", + "label": "Member of (Obsolete)", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupHierarchyLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Member" + }, + { + "name": "Skills", + "label": "Skills", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SkillLink", + "relatedTypeName": "Skill", + "sourceFieldName": "Member" + }, + { + "name": "AllMembers", + "label": "All Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "ResourceManagers", + "label": "Resource Managers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceManagerLink", + "relatedTypeName": "User", + "sourceFieldName": "Container" + }, + { + "name": "CapacityOfUserDaily", + "label": "Capacity Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseDaily", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "CapacityOfUserMonthly", + "label": "Capacity Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseMonthly", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + }, + { + "name": "AssignedWorkItems", + "label": "Assigned Work Items", + "roleLabel": "Resource", + "readOnly": true, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "LoadFor", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "LoadForMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "StaffTimePhasedDataForDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "WorkItem" + }, + { + "name": "StaffTimePhasedDataForMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "WorkItem" + }, + { + "name": "RequestedFor", + "label": "Staffing Requests (Work Item)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceRequest", + "relatedTypeName": "GenericProject", + "sourceFieldName": "ResourceEntity" + }, + { + "name": "GroupMembersAndPlaceholders", + "label": "Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + }, + { + "name": "Projects", + "label": "Projects", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupProjectLink", + "relatedTypeName": "GenericProject", + "sourceFieldName": "Group" + }, + { + "name": "Tasks", + "label": "Tasks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupTaskLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Group" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCustomerLink", + "relatedTypeName": "Customer", + "sourceFieldName": "Group" + }, + { + "name": "Cases", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Case", + "sourceFieldName": "Group" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicGroupLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "IssuesForGroup", + "label": "Issues", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Issue", + "sourceFieldName": "Group" + }, + { + "name": "RisksForGroup", + "label": "Risks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Risk", + "sourceFieldName": "Group" + }, + { + "name": "BugsForGroup", + "label": "Bugs", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Bug", + "sourceFieldName": "Group" + }, + { + "name": "EnhancementRequestForGroup", + "label": "Enhancement Requests", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "EnhancementRequest", + "sourceFieldName": "Group" + }, + { + "name": "UserGroupMembers", + "label": "User Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "User", + "sourceFieldName": "Container" + }, + { + "name": "AssetGroupMembers", + "label": "Asset Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Container" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceGroupEntityAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + } + ] + }, + { + "typeName": "Group", + "label": "Group", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "DirectManager", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Direct Manager", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CustomCss", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Custom CSS", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "GroupMembersAndPlaceholders", + "label": "Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + }, + { + "name": "Projects", + "label": "Projects", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupProjectLink", + "relatedTypeName": "GenericProject", + "sourceFieldName": "Group" + }, + { + "name": "Tasks", + "label": "Tasks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupTaskLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Group" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCustomerLink", + "relatedTypeName": "Customer", + "sourceFieldName": "Group" + }, + { + "name": "Cases", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Case", + "sourceFieldName": "Group" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicGroupLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "IssuesForGroup", + "label": "Issues", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Issue", + "sourceFieldName": "Group" + }, + { + "name": "RisksForGroup", + "label": "Risks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Risk", + "sourceFieldName": "Group" + }, + { + "name": "BugsForGroup", + "label": "Bugs", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Bug", + "sourceFieldName": "Group" + }, + { + "name": "EnhancementRequestForGroup", + "label": "Enhancement Requests", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "EnhancementRequest", + "sourceFieldName": "Group" + }, + { + "name": "UserGroupMembers", + "label": "User Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "User", + "sourceFieldName": "Container" + }, + { + "name": "AssetGroupMembers", + "label": "Asset Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Container" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceGroupEntityAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "RecipientOfEmails", + "label": "Recipient Of Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "EmailRecipient", + "sourceFieldName": "Recipient" + }, + { + "name": "SubGroups", + "label": "Sub Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SubGroupHierarchyLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Container" + }, + { + "name": "ParentGroups", + "label": "Member of", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SubGroupHierarchyLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Member" + }, + { + "name": "Members", + "label": "Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupHierarchyLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + }, + { + "name": "MemberOf", + "label": "Member of (Obsolete)", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupHierarchyLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Member" + }, + { + "name": "Skills", + "label": "Skills", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SkillLink", + "relatedTypeName": "Skill", + "sourceFieldName": "Member" + }, + { + "name": "AllMembers", + "label": "All Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "ResourceManagers", + "label": "Resource Managers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceManagerLink", + "relatedTypeName": "User", + "sourceFieldName": "Container" + }, + { + "name": "CapacityOfUserDaily", + "label": "Capacity Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseDaily", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "CapacityOfUserMonthly", + "label": "Capacity Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseMonthly", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + }, + { + "name": "AssignedWorkItems", + "label": "Assigned Work Items", + "roleLabel": "Resource", + "readOnly": true, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "LoadFor", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "LoadForMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "StaffTimePhasedDataForDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "WorkItem" + }, + { + "name": "StaffTimePhasedDataForMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "WorkItem" + }, + { + "name": "RequestedFor", + "label": "Staffing Requests (Work Item)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceRequest", + "relatedTypeName": "GenericProject", + "sourceFieldName": "ResourceEntity" + } + ] + }, + { + "typeName": "Skill", + "label": "Skill", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83963", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "defaultValue": { + "id": "/NonLaborResourceLinkCategory/Labor", + "Name": "Labor" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.12305.0-54C01BBB5A71E5D930D4F3E2803B47216DFD13D9/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "UserGroups", + "label": "Skill Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SkillLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceGroupEntityAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + } + ] + }, + { + "typeName": "ResourceGroupEntity", + "label": "Group", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceGroupEntityAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + }, + { + "name": "GroupMembersAndPlaceholders", + "label": "Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + }, + { + "name": "WorkingEntites", + "label": "Job Title Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "WorkingEntity", + "sourceFieldName": "JobTitle" + }, + { + "name": "JobTitleMembers", + "label": "Job Title Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "WorkItems", + "label": "Related Work Items (Obsolete)", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "ProvidesRateFor", + "label": "Projects", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "JobTitleRateLink", + "relatedTypeName": "GenericProject", + "sourceFieldName": "Resource" + }, + { + "name": "StaffTimePhasedDataForDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "WorkItem" + }, + { + "name": "StaffTimePhasedDataForMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "WorkItem" + }, + { + "name": "RequestedFor", + "label": "Staffing Requests (Work Item)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceRequest", + "relatedTypeName": "GenericProject", + "sourceFieldName": "ResourceEntity" + }, + { + "name": "MemberOfGroups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "ResourceGroupEntity", + "sourceFieldName": "Member" + }, + { + "name": "LoadFor", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "LoadForMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "AssignedWorkItems", + "label": "Assigned Work Items", + "roleLabel": "Resource", + "readOnly": true, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "Projects", + "label": "Projects", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupProjectLink", + "relatedTypeName": "GenericProject", + "sourceFieldName": "Group" + }, + { + "name": "Tasks", + "label": "Tasks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupTaskLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Group" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCustomerLink", + "relatedTypeName": "Customer", + "sourceFieldName": "Group" + }, + { + "name": "Cases", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Case", + "sourceFieldName": "Group" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicGroupLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "IssuesForGroup", + "label": "Issues", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Issue", + "sourceFieldName": "Group" + }, + { + "name": "RisksForGroup", + "label": "Risks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Risk", + "sourceFieldName": "Group" + }, + { + "name": "BugsForGroup", + "label": "Bugs", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Bug", + "sourceFieldName": "Group" + }, + { + "name": "EnhancementRequestForGroup", + "label": "Enhancement Requests", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "EnhancementRequest", + "sourceFieldName": "Group" + }, + { + "name": "UserGroupMembers", + "label": "User Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "User", + "sourceFieldName": "Container" + }, + { + "name": "AssetGroupMembers", + "label": "Asset Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Container" + }, + { + "name": "RecipientOfEmails", + "label": "Recipient Of Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "EmailRecipient", + "sourceFieldName": "Recipient" + }, + { + "name": "SubGroups", + "label": "Sub Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SubGroupHierarchyLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Container" + }, + { + "name": "ParentGroups", + "label": "Member of", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SubGroupHierarchyLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Member" + }, + { + "name": "Members", + "label": "Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupHierarchyLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + }, + { + "name": "MemberOf", + "label": "Member of (Obsolete)", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupHierarchyLink", + "relatedTypeName": "ResourceGroupEntity", + "sourceFieldName": "Member" + }, + { + "name": "Skills", + "label": "Skills", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SkillLink", + "relatedTypeName": "Skill", + "sourceFieldName": "Member" + }, + { + "name": "AllMembers", + "label": "All Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "ResourceManagers", + "label": "Resource Managers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceManagerLink", + "relatedTypeName": "User", + "sourceFieldName": "Container" + }, + { + "name": "CapacityOfUserDaily", + "label": "Capacity Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseDaily", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "CapacityOfUserMonthly", + "label": "Capacity Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseMonthly", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "UserGroups", + "label": "Skill Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SkillLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + } + ] + }, + { + "typeName": "ResourceEntity", + "label": "Groups And Users", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Default Members Availability(%) for New Project", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "CapacityOfUserDaily", + "label": "Capacity Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseDaily", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "CapacityOfUserMonthly", + "label": "Capacity Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseMonthly", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "LoadFor", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "LoadForMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "AssignedWorkItems", + "label": "Assigned Work Items", + "roleLabel": "Resource", + "readOnly": true, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "TechAccountManagerOfCustomers", + "label": "Technical Account Manager of Customers", + "roleLabel": "Customer Technical Account Manager", + "readOnly": false, + "relatedTypeName": "Customer", + "sourceFieldName": "TechnicalAccountManager" + }, + { + "name": "AccountOwnerOfCustomers", + "label": "Account Owner of Customers", + "roleLabel": "Customer Account Owner", + "readOnly": false, + "relatedTypeName": "Customer", + "sourceFieldName": "Owner" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "UsersImFollowing", + "label": "Users following", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "CreatedTimesheets", + "label": "Created Timesheets", + "roleLabel": "Creator", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "CreatedBy" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "MemberOfWorkItems", + "label": "Related Work Items", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "ApprovedTimesheets", + "label": "Approved Timesheets", + "roleLabel": "Approver", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "ApprovedBy" + }, + { + "name": "OwnedExpenses", + "label": "Owner of Expenses", + "roleLabel": "Owner", + "readOnly": true, + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "Owner" + }, + { + "name": "ExpensesApprovedBy", + "label": "Approved Expenses", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "ApprovedBy" + }, + { + "name": "ApproverOfExpenses", + "label": "Approver of Expenses", + "roleLabel": "Expense Approver", + "readOnly": true, + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "Approver" + }, + { + "name": "OwnerOfIssues", + "label": "Owned Cases", + "roleLabel": "Owner", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "Owner" + }, + { + "name": "AssignedIssues", + "label": "Assigned Cases", + "roleLabel": "Assigned to", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "AssignedTo" + }, + { + "name": "SubmittedIssues", + "label": "Submitted Cases", + "roleLabel": "Submitted by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "SubmittedBy" + }, + { + "name": "EvaluatedIssues", + "label": "Evaluated Cases", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "EvaluatedBy" + }, + { + "name": "OpenedByIssues", + "label": "Opened Cases", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "OpenedBy" + }, + { + "name": "ResolvedIssues", + "label": "Resolved Cases", + "roleLabel": "Resolved by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ResolvedBy" + }, + { + "name": "ClosedByIssues", + "label": "Closed Cases", + "roleLabel": "Closed by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ClosedBy" + }, + { + "name": "RejectedIssues", + "label": "Rejected Cases", + "roleLabel": "Rejected by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "RejectedBy" + }, + { + "name": "ReopenedIssues", + "label": "Reopened Cases", + "roleLabel": "Reopened by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ReopenedBy" + }, + { + "name": "DeferredByIssues", + "label": "Deferred Cases", + "roleLabel": "Deferred by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "DeferredBy" + }, + { + "name": "Issues", + "label": "Member of Cases", + "roleLabel": "Team Member", + "readOnly": true, + "linkTypeName": "IssueTeamMembers", + "relatedTypeName": "Case", + "sourceFieldName": "TeamMember" + }, + { + "name": "ReviewerOfWorkItems", + "label": "Reviewer of Work Items", + "roleLabel": "Reviewer", + "readOnly": true, + "linkTypeName": "ReviewerLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "ManagerOfWorkItems", + "label": "Managed Work Items", + "roleLabel": "Owner", + "readOnly": true, + "linkTypeName": "ManagerResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "MemberOf", + "label": "Member of (Obsolete)", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupHierarchyLink", + "relatedTypeName": "ResourceGroupEntity", + "sourceFieldName": "Member" + }, + { + "name": "Skills", + "label": "Skills", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SkillLink", + "relatedTypeName": "Skill", + "sourceFieldName": "Member" + }, + { + "name": "ProjectManagerOfProjects", + "label": "Managed Projects", + "roleLabel": "Project Manager", + "readOnly": true, + "relatedTypeName": "GenericProject", + "sourceFieldName": "ProjectManager" + }, + { + "name": "ProjectSponsorOfProjects", + "label": "Sponsored Projects", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "GenericProject", + "sourceFieldName": "ProjectSponsor" + }, + { + "name": "Subordinates", + "label": "Direct Reports", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User", + "sourceFieldName": "DirectManager" + }, + { + "name": "WorkItems", + "label": "Related Work Items (Obsolete)", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "WorkItemIOpenedStopwatch", + "label": "Active Stopwatches", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "Stopwatch", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "RecipientOfEmails", + "label": "Recipient Of Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "EmailRecipient", + "sourceFieldName": "Recipient" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "DirectManagerOfGroups", + "label": "Manager of Groups", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UserGroup", + "sourceFieldName": "DirectManager" + }, + { + "name": "ReportedTimesheets", + "label": "Reported Timesheets", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "ReportedBy" + }, + { + "name": "RestrictedFieldsSet", + "label": "Restricted Fields Set", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RestrictedFieldsSetLink", + "relatedTypeName": "RestrictedFieldsSet", + "sourceFieldName": "MemberEntity" + }, + { + "name": "OwnedProofs", + "label": "Owned Proofs", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Document", + "sourceFieldName": "ProofOwner" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "UserAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "ResourceManagerOfGroups", + "label": "Resource Manager of Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceManagerLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Member" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "ProgramManager", + "label": "Managed Program Components", + "roleLabel": "Program Manager Direct", + "readOnly": true, + "relatedTypeName": "Program", + "sourceFieldName": "ProgramManager" + }, + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + }, + { + "name": "CapacityTimeline", + "label": "Capacity", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "CapacityTimeline", + "sourceFieldName": "CapacityFor" + }, + { + "name": "OwnedWorkItem", + "label": "Owned Work Items", + "roleLabel": "Owner", + "readOnly": true, + "linkTypeName": "OwnerLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "UserOpenProofs", + "label": "Open Proofs", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Document" + }, + { + "name": "ResourceManager", + "label": "Resource Manager", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "User" + }, + { + "name": "RequestedFor", + "label": "Staffing Requests (Work Item)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceRequest", + "relatedTypeName": "GenericProject", + "sourceFieldName": "ResourceEntity" + }, + { + "name": "StaffTimePhasedDataForDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "WorkItem" + }, + { + "name": "StaffTimePhasedDataForMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "WorkItem" + }, + { + "name": "TimesheetApprovalDelegates", + "label": "Timesheet Approval Delegates", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TimesheetApprovalDelegateLink", + "relatedTypeName": "User", + "sourceFieldName": "TimesheetApprovalDelegator" + }, + { + "name": "TimesheetApprovalDelegators", + "label": "Timesheet Approval Delegators", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "TimesheetApprovalDelegateLink", + "relatedTypeName": "User", + "sourceFieldName": "TimesheetApprovalDelegate" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ProfileUserGroups", + "label": "Profile Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ProfileLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + }, + { + "name": "GroupMembersAndPlaceholders", + "label": "Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + }, + { + "name": "WorkingEntites", + "label": "Job Title Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "WorkingEntity", + "sourceFieldName": "JobTitle" + }, + { + "name": "JobTitleMembers", + "label": "Job Title Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "ProvidesRateFor", + "label": "Projects", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "JobTitleRateLink", + "relatedTypeName": "GenericProject", + "sourceFieldName": "Resource" + }, + { + "name": "Projects", + "label": "Projects", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupProjectLink", + "relatedTypeName": "GenericProject", + "sourceFieldName": "Group" + }, + { + "name": "Tasks", + "label": "Tasks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupTaskLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Group" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCustomerLink", + "relatedTypeName": "Customer", + "sourceFieldName": "Group" + }, + { + "name": "Cases", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Case", + "sourceFieldName": "Group" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicGroupLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "IssuesForGroup", + "label": "Issues", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Issue", + "sourceFieldName": "Group" + }, + { + "name": "RisksForGroup", + "label": "Risks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Risk", + "sourceFieldName": "Group" + }, + { + "name": "BugsForGroup", + "label": "Bugs", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Bug", + "sourceFieldName": "Group" + }, + { + "name": "EnhancementRequestForGroup", + "label": "Enhancement Requests", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "EnhancementRequest", + "sourceFieldName": "Group" + }, + { + "name": "UserGroupMembers", + "label": "User Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "User", + "sourceFieldName": "Container" + }, + { + "name": "AssetGroupMembers", + "label": "Asset Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Container" + }, + { + "name": "SubGroups", + "label": "Sub Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SubGroupHierarchyLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Container" + }, + { + "name": "ParentGroups", + "label": "Member of", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SubGroupHierarchyLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Member" + }, + { + "name": "Members", + "label": "Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupHierarchyLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + }, + { + "name": "AllMembers", + "label": "All Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "ResourceManagers", + "label": "Resource Managers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceManagerLink", + "relatedTypeName": "User", + "sourceFieldName": "Container" + }, + { + "name": "UserGroups", + "label": "Skill Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SkillLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + } + ] + }, + { + "typeName": "GenericResourceEntity", + "label": "Users And Resources", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLinkCategory" + ], + "name": "NLRCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Category", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "RelatedWorkItemVersions", + "label": "Related Work Item Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "NonLaborResourceLinkVersion", + "relatedTypeName": "WorkItemVersion", + "sourceFieldName": "NonLaborResource" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "NLRAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "NLROfWorkItems", + "label": "Related Work Items", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "NonLaborResourceLinkAggregated", + "relatedTypeName": "WorkItem", + "sourceFieldName": "NonLaborResource" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "CapacityOfUserDaily", + "label": "Capacity Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseDaily", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "CapacityOfUserMonthly", + "label": "Capacity Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UCTimePhaseMonthly", + "sourceFieldName": "UserOrUserGroup" + }, + { + "name": "LoadFor", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "LoadForMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "AssignedWorkItems", + "label": "Assigned Work Items", + "roleLabel": "Resource", + "readOnly": true, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "TechAccountManagerOfCustomers", + "label": "Technical Account Manager of Customers", + "roleLabel": "Customer Technical Account Manager", + "readOnly": false, + "relatedTypeName": "Customer", + "sourceFieldName": "TechnicalAccountManager" + }, + { + "name": "AccountOwnerOfCustomers", + "label": "Account Owner of Customers", + "roleLabel": "Customer Account Owner", + "readOnly": false, + "relatedTypeName": "Customer", + "sourceFieldName": "Owner" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "UsersImFollowing", + "label": "Users following", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "CreatedTimesheets", + "label": "Created Timesheets", + "roleLabel": "Creator", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "CreatedBy" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "MemberOfWorkItems", + "label": "Related Work Items", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "ApprovedTimesheets", + "label": "Approved Timesheets", + "roleLabel": "Approver", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "ApprovedBy" + }, + { + "name": "OwnedExpenses", + "label": "Owner of Expenses", + "roleLabel": "Owner", + "readOnly": true, + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "Owner" + }, + { + "name": "ExpensesApprovedBy", + "label": "Approved Expenses", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "ApprovedBy" + }, + { + "name": "ApproverOfExpenses", + "label": "Approver of Expenses", + "roleLabel": "Expense Approver", + "readOnly": true, + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "Approver" + }, + { + "name": "OwnerOfIssues", + "label": "Owned Cases", + "roleLabel": "Owner", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "Owner" + }, + { + "name": "AssignedIssues", + "label": "Assigned Cases", + "roleLabel": "Assigned to", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "AssignedTo" + }, + { + "name": "SubmittedIssues", + "label": "Submitted Cases", + "roleLabel": "Submitted by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "SubmittedBy" + }, + { + "name": "EvaluatedIssues", + "label": "Evaluated Cases", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "EvaluatedBy" + }, + { + "name": "OpenedByIssues", + "label": "Opened Cases", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "OpenedBy" + }, + { + "name": "ResolvedIssues", + "label": "Resolved Cases", + "roleLabel": "Resolved by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ResolvedBy" + }, + { + "name": "ClosedByIssues", + "label": "Closed Cases", + "roleLabel": "Closed by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ClosedBy" + }, + { + "name": "RejectedIssues", + "label": "Rejected Cases", + "roleLabel": "Rejected by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "RejectedBy" + }, + { + "name": "ReopenedIssues", + "label": "Reopened Cases", + "roleLabel": "Reopened by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "ReopenedBy" + }, + { + "name": "DeferredByIssues", + "label": "Deferred Cases", + "roleLabel": "Deferred by", + "readOnly": true, + "relatedTypeName": "Case", + "sourceFieldName": "DeferredBy" + }, + { + "name": "Issues", + "label": "Member of Cases", + "roleLabel": "Team Member", + "readOnly": true, + "linkTypeName": "IssueTeamMembers", + "relatedTypeName": "Case", + "sourceFieldName": "TeamMember" + }, + { + "name": "ReviewerOfWorkItems", + "label": "Reviewer of Work Items", + "roleLabel": "Reviewer", + "readOnly": true, + "linkTypeName": "ReviewerLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "ManagerOfWorkItems", + "label": "Managed Work Items", + "roleLabel": "Manager", + "readOnly": true, + "linkTypeName": "ManagerResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "MemberOf", + "label": "Member of (Obsolete)", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupHierarchyLink", + "relatedTypeName": "ResourceGroupEntity", + "sourceFieldName": "Member" + }, + { + "name": "Skills", + "label": "Skills", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SkillLink", + "relatedTypeName": "Skill", + "sourceFieldName": "Member" + }, + { + "name": "ProjectManagerOfProjects", + "label": "Managed Projects", + "roleLabel": "Project Manager", + "readOnly": true, + "relatedTypeName": "GenericProject", + "sourceFieldName": "ProjectManager" + }, + { + "name": "ProjectSponsorOfProjects", + "label": "Sponsored Projects", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "GenericProject", + "sourceFieldName": "ProjectSponsor" + }, + { + "name": "Subordinates", + "label": "Direct Reports", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User", + "sourceFieldName": "DirectManager" + }, + { + "name": "WorkItems", + "label": "Related Work Items (Obsolete)", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "WorkItemIOpenedStopwatch", + "label": "Active Stopwatches", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "Stopwatch", + "relatedTypeName": "WorkItem", + "sourceFieldName": "User" + }, + { + "name": "RecipientOfEmails", + "label": "Recipient Of Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "EmailRecipient", + "sourceFieldName": "Recipient" + }, + { + "name": "DirectManagerOfGroups", + "label": "Manager of Groups", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "UserGroup", + "sourceFieldName": "DirectManager" + }, + { + "name": "ReportedTimesheets", + "label": "Reported Timesheets", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "ReportedBy" + }, + { + "name": "RestrictedFieldsSet", + "label": "Restricted Fields Set", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RestrictedFieldsSetLink", + "relatedTypeName": "RestrictedFieldsSet", + "sourceFieldName": "MemberEntity" + }, + { + "name": "OwnedProofs", + "label": "Owned Proofs", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Document", + "sourceFieldName": "ProofOwner" + }, + { + "name": "ResourceManagerOfGroups", + "label": "Resource Manager of Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceManagerLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Member" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "ProgramManager", + "label": "Managed Program Components", + "roleLabel": "Program Manager Direct", + "readOnly": true, + "relatedTypeName": "Program", + "sourceFieldName": "ProgramManager" + }, + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + }, + { + "name": "CapacityTimeline", + "label": "Capacity", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "CapacityTimeline", + "sourceFieldName": "CapacityFor" + }, + { + "name": "OwnedWorkItem", + "label": "Owned Work Items", + "roleLabel": "Owner", + "readOnly": true, + "linkTypeName": "OwnerLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Resource" + }, + { + "name": "UserOpenProofs", + "label": "Open Proofs", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Document" + }, + { + "name": "ResourceManager", + "label": "Resource Manager", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "User" + }, + { + "name": "RequestedFor", + "label": "Staffing Requests (Work Item)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceRequest", + "relatedTypeName": "GenericProject", + "sourceFieldName": "ResourceEntity" + }, + { + "name": "StaffTimePhasedDataForDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "WorkItem" + }, + { + "name": "StaffTimePhasedDataForMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "WorkItem" + }, + { + "name": "TimesheetApprovalDelegates", + "label": "Timesheet Approval Delegates", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TimesheetApprovalDelegateLink", + "relatedTypeName": "User", + "sourceFieldName": "TimesheetApprovalDelegator" + }, + { + "name": "TimesheetApprovalDelegators", + "label": "Timesheet Approval Delegators", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "TimesheetApprovalDelegateLink", + "relatedTypeName": "User", + "sourceFieldName": "TimesheetApprovalDelegate" + }, + { + "name": "ProfileUserGroups", + "label": "Profile Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ProfileLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + }, + { + "name": "GroupMembersAndPlaceholders", + "label": "Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + }, + { + "name": "WorkingEntites", + "label": "Job Title Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "WorkingEntity", + "sourceFieldName": "JobTitle" + }, + { + "name": "JobTitleMembers", + "label": "Job Title Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "ProvidesRateFor", + "label": "Projects", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "JobTitleRateLink", + "relatedTypeName": "GenericProject", + "sourceFieldName": "Resource" + }, + { + "name": "Projects", + "label": "Projects", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupProjectLink", + "relatedTypeName": "GenericProject", + "sourceFieldName": "Group" + }, + { + "name": "Tasks", + "label": "Tasks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupTaskLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Group" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCustomerLink", + "relatedTypeName": "Customer", + "sourceFieldName": "Group" + }, + { + "name": "Cases", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Case", + "sourceFieldName": "Group" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicGroupLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "IssuesForGroup", + "label": "Issues", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Issue", + "sourceFieldName": "Group" + }, + { + "name": "RisksForGroup", + "label": "Risks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Risk", + "sourceFieldName": "Group" + }, + { + "name": "BugsForGroup", + "label": "Bugs", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Bug", + "sourceFieldName": "Group" + }, + { + "name": "EnhancementRequestForGroup", + "label": "Enhancement Requests", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "EnhancementRequest", + "sourceFieldName": "Group" + }, + { + "name": "UserGroupMembers", + "label": "User Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "User", + "sourceFieldName": "Container" + }, + { + "name": "AssetGroupMembers", + "label": "Asset Group Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupMembershipLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Container" + }, + { + "name": "SubGroups", + "label": "Sub Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SubGroupHierarchyLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Container" + }, + { + "name": "ParentGroups", + "label": "Member of", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SubGroupHierarchyLink", + "relatedTypeName": "UserGroup", + "sourceFieldName": "Member" + }, + { + "name": "Members", + "label": "Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupHierarchyLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + }, + { + "name": "AllMembers", + "label": "All Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "ResourceManagers", + "label": "Resource Managers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceManagerLink", + "relatedTypeName": "User", + "sourceFieldName": "Container" + }, + { + "name": "UserGroups", + "label": "Skill Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "SkillLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Container" + } + ] + }, + { + "typeName": "FileTemplate", + "label": "File Template", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83964", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "DocumentType" + ], + "name": "DocumentType", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Value", + "includeDataFields": false + }, + "flags": [], + "presentationType": "PickList", + "label": "Document Type", + "defaultValue": { + "id": "/DocumentType/General", + "Name": "General" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "StorageType" + ], + "name": "StorageType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Storage Type", + "defaultValue": { + "id": "/StorageType/Local File", + "Name": "Local File" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "FileType" + ], + "name": "FileType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "File Type", + "defaultValue": { + "id": "/FileType/Document", + "Name": "Document" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ViewerUrl", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Viewer Url", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FileModificationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Date", + "label": "File Modification Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Content", + "type": "Binary", + "filterable": false, + "sortable": false, + "presentationType": "Text", + "label": "Content", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Url", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "Text", + "label": "Url", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ContentLength", + "type": "Integer", + "filterable": false, + "sortable": false, + "presentationType": "Numeric", + "label": "ContentLength", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SharePointFileId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SharePoint File Id", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TemplateItemType" + ], + "name": "TemplateItemType", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Value", + "includeDataFields": false + }, + "presentationType": "PickList", + "label": "Template Item Type", + "defaultValue": { + "id": "/TemplateItemType/Project", + "Name": "Project" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Document", + "label": "File", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83965", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "DocumentType" + ], + "name": "DocumentType", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Value", + "includeDataFields": false + }, + "flags": [], + "presentationType": "PickList", + "label": "Document Type", + "defaultValue": { + "id": "/DocumentType/General", + "Name": "General" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "StorageType" + ], + "name": "StorageType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Storage Type", + "defaultValue": { + "id": "/StorageType/Local File", + "Name": "Local File" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "FileType" + ], + "name": "FileType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "File Type", + "defaultValue": { + "id": "/FileType/Document", + "Name": "Document" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ViewerUrl", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Viewer Url", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FileModificationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Date", + "label": "File Modification Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Content", + "type": "Binary", + "filterable": false, + "sortable": false, + "presentationType": "Text", + "label": "Content", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Url", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "Url", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ContentLength", + "type": "Integer", + "filterable": false, + "sortable": false, + "presentationType": "Numeric", + "label": "ContentLength", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SharePointFileId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SharePoint File Id", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ProofDecision", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Proof Decision", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsBeingProofed", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Under Proofing", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ProofLastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Proof Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "ProofOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Proof Owner", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ProofUpdateCompletedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Proof Update Completed On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastDecisionBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Decision By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastDecisionByEmail", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Last Decision By Email", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastApproverDecision", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Last Approver Decision", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastDecisionOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Decision On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ProofDeadlineDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Proof Deadline Date", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "Groups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceGroupEntityAttachmentLink", + "relatedTypeName": "ResourceGroupEntity", + "sourceFieldName": "Document" + }, + { + "name": "DiscussionMessages", + "label": "DiscussionMessages", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DiscussionMessageAttachmentLink", + "relatedTypeName": "DiscussionMessage", + "sourceFieldName": "Document" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CustomerAttachmentLink", + "relatedTypeName": "Customer", + "sourceFieldName": "Document" + }, + { + "name": "ExpenseSheets", + "label": "Expense Sheets", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ExpenseSheetAttachmentLink", + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "Document" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "WorkItems", + "label": "Work Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemAttachmentLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Document" + }, + { + "name": "ExpenseEntries", + "label": "Expenses", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ExpenseEntryAttachmentLink", + "relatedTypeName": "Expense", + "sourceFieldName": "Document" + }, + { + "name": "Issues", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "IssueAttachmentLink", + "relatedTypeName": "Case", + "sourceFieldName": "Document" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicDocumentLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "Users", + "label": "Users", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "UserAttachmentLink", + "relatedTypeName": "User", + "sourceFieldName": "Document" + }, + { + "name": "ProofReviewers", + "label": "Proof Reviewers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ProofReviewer", + "relatedTypeName": "User" + }, + { + "name": "Reports", + "label": "Reports", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ReportAttachmentLink", + "relatedTypeName": "Report", + "sourceFieldName": "Document" + }, + { + "name": "Dashboards", + "label": "Dashboards", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DashboardAttachmentLink", + "relatedTypeName": "Dashboard", + "sourceFieldName": "Document" + }, + { + "name": "Lines", + "label": "Lines", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "String" + }, + { + "name": "Contracts", + "label": "Contracts", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ContractAttachmentLink", + "relatedTypeName": "Contract", + "sourceFieldName": "Document" + }, + { + "name": "ContractPurchaseOrders", + "label": "ContractPurchaseOrders", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ContractPurchaseOrderAttachmentLink", + "relatedTypeName": "ContractPurchaseOrder", + "sourceFieldName": "Document" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "NonLaborResource", + "label": "Non-Labor Resource", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "NLRAttachmentLink", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "Document" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemAttachmentLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "Document" + }, + { + "name": "BusinessUnits", + "label": "Business Units", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "BusinessUnitAttachmentLink", + "relatedTypeName": "BusinessUnit", + "sourceFieldName": "Document" + }, + { + "name": "Portfolios", + "label": "Portfolios", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "PortfolioAttachmentLink", + "relatedTypeName": "Portfolio", + "sourceFieldName": "Document" + }, + { + "name": "Targets", + "label": "Targets", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TargetAttachmentLink", + "relatedTypeName": "Target", + "sourceFieldName": "Document" + }, + { + "name": "Objectives", + "label": "Objectives", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ObjectiveAttachmentLink", + "relatedTypeName": "Objective", + "sourceFieldName": "Document" + }, + { + "name": "Contributions", + "label": "Contributions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ContributionAttachmentLink", + "relatedTypeName": "Contribution", + "sourceFieldName": "Document" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionAttachmentLink", + "relatedTypeName": "Decision", + "sourceFieldName": "Document" + }, + { + "name": "MeetingNotes", + "label": "MeetingNotes", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "MeetingNoteAttachmentLink", + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Document" + }, + { + "name": "Assets", + "label": "Assets", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "AssetAttachmentLink", + "relatedTypeName": "Asset", + "sourceFieldName": "Document" + } + ] + }, + { + "typeName": "BaseFile", + "label": "Files", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "DocumentType" + ], + "name": "DocumentType", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Value", + "includeDataFields": false + }, + "flags": [], + "presentationType": "PickList", + "label": "Document Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "StorageType" + ], + "name": "StorageType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Storage Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "FileType" + ], + "name": "FileType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "File Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ViewerUrl", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Viewer Url", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FileModificationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Date", + "label": "File Modification Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Content", + "type": "Binary", + "filterable": false, + "sortable": false, + "presentationType": "Text", + "label": "Content", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Url", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "Text", + "label": "Url", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ContentLength", + "type": "Integer", + "filterable": false, + "sortable": false, + "presentationType": "Numeric", + "label": "ContentLength", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SharePointFileId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SharePoint File Id", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "Groups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceGroupEntityAttachmentLink", + "relatedTypeName": "ResourceGroupEntity", + "sourceFieldName": "Document" + }, + { + "name": "DiscussionMessages", + "label": "DiscussionMessages", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DiscussionMessageAttachmentLink", + "relatedTypeName": "DiscussionMessage", + "sourceFieldName": "Document" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CustomerAttachmentLink", + "relatedTypeName": "Customer", + "sourceFieldName": "Document" + }, + { + "name": "ExpenseSheets", + "label": "Expense Sheets", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ExpenseSheetAttachmentLink", + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "Document" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "WorkItems", + "label": "Work Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemAttachmentLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Document" + }, + { + "name": "ExpenseEntries", + "label": "Expenses", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ExpenseEntryAttachmentLink", + "relatedTypeName": "Expense", + "sourceFieldName": "Document" + }, + { + "name": "Issues", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "IssueAttachmentLink", + "relatedTypeName": "Case", + "sourceFieldName": "Document" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicDocumentLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "Users", + "label": "Users", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "UserAttachmentLink", + "relatedTypeName": "User", + "sourceFieldName": "Document" + }, + { + "name": "ProofReviewers", + "label": "Proof Reviewers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ProofReviewer", + "relatedTypeName": "User" + }, + { + "name": "Reports", + "label": "Reports", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ReportAttachmentLink", + "relatedTypeName": "Report", + "sourceFieldName": "Document" + }, + { + "name": "Dashboards", + "label": "Dashboards", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DashboardAttachmentLink", + "relatedTypeName": "Dashboard", + "sourceFieldName": "Document" + }, + { + "name": "Lines", + "label": "Lines", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "String" + }, + { + "name": "Contracts", + "label": "Contracts", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ContractAttachmentLink", + "relatedTypeName": "Contract", + "sourceFieldName": "Document" + }, + { + "name": "ContractPurchaseOrders", + "label": "ContractPurchaseOrders", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ContractPurchaseOrderAttachmentLink", + "relatedTypeName": "ContractPurchaseOrder", + "sourceFieldName": "Document" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "NonLaborResource", + "label": "Non labor resource", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "NLRAttachmentLink", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "Document" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemAttachmentLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "Document" + }, + { + "name": "BusinessUnits", + "label": "Business Units", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "BusinessUnitAttachmentLink", + "relatedTypeName": "BusinessUnit", + "sourceFieldName": "Document" + }, + { + "name": "Portfolios", + "label": "Portfolios", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "PortfolioAttachmentLink", + "relatedTypeName": "Portfolio", + "sourceFieldName": "Document" + }, + { + "name": "Targets", + "label": "Targets", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TargetAttachmentLink", + "relatedTypeName": "Target", + "sourceFieldName": "Document" + }, + { + "name": "Objectives", + "label": "Objectives", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ObjectiveAttachmentLink", + "relatedTypeName": "Objective", + "sourceFieldName": "Document" + }, + { + "name": "Contributions", + "label": "Contributions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ContributionAttachmentLink", + "relatedTypeName": "Contribution", + "sourceFieldName": "Document" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionAttachmentLink", + "relatedTypeName": "Decision", + "sourceFieldName": "Document" + }, + { + "name": "MeetingNotes", + "label": "MeetingNotes", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "MeetingNoteAttachmentLink", + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Document" + }, + { + "name": "Assets", + "label": "Assets", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "AssetAttachmentLink", + "relatedTypeName": "Asset", + "sourceFieldName": "Document" + } + ] + }, + { + "typeName": "PhasingResourceLinkDirect", + "label": "Phasing Resource link direct", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "PhasingResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83966", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": true, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Capex", + "Name": "Capex" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": false, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseData", + "label": "Time Phased Data", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "GenericPhasingResourceTimePhase", + "sourceFieldName": "RelatedLink" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "ResourceLinkFinancialVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "PhasingResourceLinkAggregated", + "label": "Phasing Resource link aggregated", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "PhasingResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83967", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": true, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Capex", + "Name": "Capex" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": false, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseData", + "label": "Time Phased Data", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "GenericPhasingResourceTimePhase", + "sourceFieldName": "RelatedLink" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "ResourceLinkFinancialVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "PhasingResourceLink", + "label": "Phasing resource link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "PhasingResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": false, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseData", + "label": "Time Phased Data", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "GenericPhasingResourceTimePhase", + "sourceFieldName": "RelatedLink" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "ResourceLinkFinancialVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "GenericPhasingResourceLink", + "label": "Generic Phasing resource link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "PhasingResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": false, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseData", + "label": "Time Phased Data", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "GenericPhasingResourceTimePhase", + "sourceFieldName": "RelatedLink" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "ResourceLinkFinancialVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "AssetResourceLinkAggregated", + "label": "Asset Resource link aggregated", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "LaborResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83968", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": false, + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "LaborResourceSnapshot" + ], + "name": "Snapshot", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Snapshot", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItemTeamLink" + ], + "name": "HumanResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Human Resource", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseData", + "label": "Time Phased Data", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "GenericLaborResourceTimePhase", + "sourceFieldName": "RelatedLink" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "ResourceLinkFinancialVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "AssetResourceLinkDirect", + "label": "Asset Resource link direct", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "LaborResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83969", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": false, + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "LaborResourceSnapshot" + ], + "name": "Snapshot", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Snapshot", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItemTeamLink" + ], + "name": "HumanResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Human Resource", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseData", + "label": "Time Phased Data", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "GenericLaborResourceTimePhase", + "sourceFieldName": "RelatedLink" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "ResourceLinkFinancialVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "AssetResourceLink", + "label": "Asset resource link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "LaborResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "LaborResourceSnapshot" + ], + "name": "Snapshot", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Snapshot", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItemTeamLink" + ], + "name": "HumanResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Human Resource", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Work", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseData", + "label": "Time Phased Data", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "GenericLaborResourceTimePhase", + "sourceFieldName": "RelatedLink" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "ResourceLinkFinancialVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "LaborResourceLinkAggregated", + "label": "Labor Resource link aggregated", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "LaborResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83970", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": false, + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "LaborResourceSnapshot" + ], + "name": "Snapshot", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Snapshot", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItemTeamLink" + ], + "name": "HumanResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Human Resource", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseData", + "label": "Time Phased Data", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "GenericLaborResourceTimePhase", + "sourceFieldName": "RelatedLink" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "ResourceLinkFinancialVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "LaborResourceLinkDirect", + "label": "Labor Resource link direct", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "LaborResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83971", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": false, + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "LaborResourceSnapshot" + ], + "name": "Snapshot", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Snapshot", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItemTeamLink" + ], + "name": "HumanResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Human Resource", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseData", + "label": "Time Phased Data", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "GenericLaborResourceTimePhase", + "sourceFieldName": "RelatedLink" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "ResourceLinkFinancialVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "LaborResourceLink", + "label": "Labor resource link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "LaborResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "LaborResourceSnapshot" + ], + "name": "Snapshot", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Snapshot", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItemTeamLink" + ], + "name": "HumanResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Human Resource", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Work", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseData", + "label": "Time Phased Data", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "GenericLaborResourceTimePhase", + "sourceFieldName": "RelatedLink" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "ResourceLinkFinancialVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "GenericLaborResourceLink", + "label": "Generic Labor resource link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "LaborResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "LaborResourceSnapshot" + ], + "name": "Snapshot", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Snapshot", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItemTeamLink" + ], + "name": "HumanResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Human Resource", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Work", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseData", + "label": "Time Phased Data", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "GenericLaborResourceTimePhase", + "sourceFieldName": "RelatedLink" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "ResourceLinkFinancialVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "FixedPriceResourceLinkAggregated", + "label": "Fixed price resource link aggregated", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83972", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": true, + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "LaborResourceSnapshot" + ], + "name": "Snapshot", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Snapshot", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseData", + "label": "Time Phased Data", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "FixedPriceResourceTimePhase", + "sourceFieldName": "RelatedLink" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "ResourceLinkFinancialVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "FixedPriceResourceLinkDirect", + "label": "Fixed price resource link direct", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "FixedPriceResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83973", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": true, + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "LaborResourceSnapshot" + ], + "name": "Snapshot", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Snapshot", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseData", + "label": "Time Phased Data", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "FixedPriceResourceTimePhase", + "sourceFieldName": "RelatedLink" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "ResourceLinkFinancialVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "FixedPriceResourceLink", + "label": "Fixed price resource link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "FixedPriceResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "LaborResourceSnapshot" + ], + "name": "Snapshot", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Snapshot", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseData", + "label": "Time Phased Data", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "FixedPriceResourceTimePhase", + "sourceFieldName": "RelatedLink" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "ResourceLinkFinancialVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "NonLaborResourceLinkAggregated", + "label": "Non-Labor Resource link aggregated", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "NonLaborResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83974", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "IsNlr3rdPartyCost", + "type": "Boolean", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "3rd Party", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseData", + "label": "Time Phased Data", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "ResourceTimePhase", + "sourceFieldName": "RelatedLink" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "ResourceLinkFinancialVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "NonLaborResourceLinkDirect", + "label": "Non-Labor Resource link direct", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "NonLaborResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83975", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "IsNlr3rdPartyCost", + "type": "Boolean", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "3rd Party", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NLRRescheduleMode" + ], + "name": "Reschedule", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "RescheduleManuallySet", + "presentationType": "PickList", + "label": "Reschedule", + "defaultValue": { + "id": "/NLRRescheduleMode/None", + "Name": "None" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RescheduleManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Reschedule Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseData", + "label": "Time Phased Data", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "ResourceTimePhase", + "sourceFieldName": "RelatedLink" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "ResourceLinkFinancialVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "NonLaborResourceLink", + "label": "Non-Labor Resource link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "NonLaborResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "IsNlr3rdPartyCost", + "type": "Boolean", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "3rd Party", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimePhaseData", + "label": "Time Phased Data", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "ResourceTimePhase", + "sourceFieldName": "RelatedLink" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "ResourceLinkFinancialVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "ResourceLinkFinancial", + "label": "Financial Resource Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Expense Type", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceLinkFinancialVersion", + "relatedTypeName": "ResourceLinkFinancialVersion", + "sourceFieldName": "VersionSourceObject" + }, + { + "name": "TimePhaseData", + "label": "Time Phased Data", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "GenericPhasingResourceTimePhase", + "sourceFieldName": "RelatedLink" + } + ] + }, + { + "typeName": "PhasingResourceTimePhase", + "label": "Phasing time phase data", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83976", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "PhasingResourceLink" + ], + "name": "RelatedLink", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Aggregated", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Aggregated", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FiscalMonth", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Fiscal Month", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ResourceTimePhaseVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "GenericPhasingResourceTimePhase", + "label": "Generic Phasing time phase data", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericPhasingResourceLink" + ], + "name": "RelatedLink", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Aggregated", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Aggregated", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FiscalMonth", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Fiscal Month", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ResourceTimePhaseVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "AssetResourceTimePhase", + "label": "Asset time phase data", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83978", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "AssetResourceLink" + ], + "name": "RelatedLink", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Aggregated", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Aggregated", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FiscalMonth", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Fiscal Month", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ResourceTimePhaseVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "LaborResourceTimePhase", + "label": "Labor time phase data", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83980", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "LaborResourceLink" + ], + "name": "RelatedLink", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Aggregated", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Aggregated", + "defaultValue": true, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FiscalMonth", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Fiscal Month", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ResourceTimePhaseVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "GenericLaborResourceTimePhase", + "label": "Generic Labor time phase data", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericLaborResourceLink" + ], + "name": "RelatedLink", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Aggregated", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Aggregated", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FiscalMonth", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Fiscal Month", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkOriginal", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkForecast", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Forecast Work", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ResourceTimePhaseVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "FixedPriceResourceTimePhase", + "label": "Fixed price time phase data", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83982", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "FixedPriceResourceLink" + ], + "name": "RelatedLink", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Aggregated", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Aggregated", + "defaultValue": true, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FiscalMonth", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Fiscal Month", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ResourceTimePhaseVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "NonLaborResourceTimePhase", + "label": "Non-Labor time phase data", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83984", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "NonLaborResourceLink" + ], + "name": "RelatedLink", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Aggregated", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Aggregated", + "defaultValue": true, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FiscalMonth", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Fiscal Month", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ResourceTimePhaseVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "ResourceTimePhase", + "label": "Financial Time Phased Data", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "LaborResourceLink" + ], + "name": "RelatedLink", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Revenue", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Aggregated", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Aggregated", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FiscalMonth", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Fiscal Month", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Net Margin %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastCostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ForecastRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Forecast Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "ResourceTimePhaseVersion", + "sourceFieldName": "VersionSourceObject" + } + ] + }, + { + "typeName": "LaborResourceSnapshot", + "label": "Labor resource snapshot", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83986", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject", + "WorkingEntity" + ], + "name": "SnapshotFor", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ShouldBeUpdated", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Should be updated", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ShouldBeUpdatedNext", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Should be updated at next time", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "UCTimePhaseDataDaily", + "label": "User Calendar Time phase data daily", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "UCTimePhaseDaily" + }, + { + "name": "UCTimePhaseDataMonthly", + "label": "User Calendar Time phase data monthly", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "UCTimePhaseMonthly" + }, + { + "name": "RLTimePhaseDataDaily", + "label": "Time phase data daily", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "RLTimePhaseDaily" + } + ] + }, + { + "typeName": "AdditionalObjectProperties", + "label": "Additional Object Properties", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "WorkItem", + "Case", + "Customer", + "Portfolio" + ], + "name": "RelatedItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Overview", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": -1, + "presentationType": "RichText", + "label": "Overview", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83987", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Overview1", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 32000, + "presentationType": "RichText", + "label": "Overview 1", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Overview2", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 32000, + "presentationType": "RichText", + "label": "Overview 2", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Overview3", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 32000, + "presentationType": "RichText", + "label": "Overview 3", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Overview4", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 32000, + "presentationType": "RichText", + "label": "Overview 4", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Overview5", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 32000, + "presentationType": "RichText", + "label": "Overview 5", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "PushNotification", + "label": "Push Notification", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83988", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "State", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "State", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "JSON", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "JSON", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Data", + "label": "Data", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83989", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Group", + "WorkItem", + "Case", + "Document", + "ExpenseSheet", + "User", + "Asset", + "Customer", + "Expense", + "Topic", + "FoldersAndReports", + "NonLaborResource", + "ResourceRequest", + "Portfolio", + "Target", + "Objective", + "Contribution", + "Contract", + "ContractPurchaseOrder" + ], + "name": "SourceObject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Source", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "DataObjectType" + ], + "name": "DataObjectType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "WorkByDay", + "label": "Task Assignment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83990", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "RegularResourceLink" + ], + "name": "ResourceLink", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SetByLeveling", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Set by leveling", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Comment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Comment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DurationInDaysInt", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Duration", + "defaultValue": 1, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OverrideNotworkingDay", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Override notworking day", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkAtDay", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work at day", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ResourceCalendarExceptionAbsolute", + "label": "Project Assignment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83991", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "RegularResourceLink" + ], + "name": "ResourceLink", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SetByLeveling", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Set by leveling", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Comment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Comment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DurationInDaysInt", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Duration", + "defaultValue": 1, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OverrideNotworkingDay", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Override notworking day", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Units", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Units(%)", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ResourceCalendarExceptionRelative", + "label": "Resource Calendar Exception Relative", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83992", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SetByLeveling", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Set by leveling", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Comment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Comment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Offset", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Order Number of day", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DurationInDaysDbl", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Duration", + "defaultValue": 1, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ResourceCalendarException", + "label": "Resource Calendar Exception", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SetByLeveling", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Set by leveling", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Comment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Comment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ReportShortcutLink", + "label": "Report Shortcut", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Parent", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Child", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Child", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83993", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Sequence", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Sequence Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ReportsHierarchyLink", + "label": "Reports Hierarchy", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Parent", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Child", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Child", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83994", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Sequence", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Sequence Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ReportsFolderContentLink", + "label": "Reports Folder Content", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Parent", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Child", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Child", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Sequence", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Sequence Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "FolderContentLink", + "label": "Folder Content", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Parent", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Child", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Child", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Dashboard", + "label": "Dashboard", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83995", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.1495388.0-A555E74FEDC88A39041C7DB4B3470BCD14B180FE/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Scheduled", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Scheduled", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerPreferredTime", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Scheduler Preferred Time", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerNotificationType", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Scheduler Notification Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerTo", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 8000, + "presentationType": "TextArea", + "label": "Scheduler To", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerCc", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 8000, + "presentationType": "TextArea", + "label": "Scheduler Cc", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerNotificationSubject", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Scheduler Notification Subject", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerNotificationBody", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": -1, + "presentationType": "RichText", + "label": "Scheduler Notification Body", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerPostTopics", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Scheduler Post Topics", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerPostNotifiers", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Scheduler Post Notifiers", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerSaveExportedData", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Scheduler Save Exported Data", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ReportExtensionType" + ], + "name": "SchedulerExportAs", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Scheduler Export As", + "defaultValue": { + "id": "/ReportExtensionType/CSV", + "Name": "CSV" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "RecurrenceType" + ], + "name": "RecurrenceType", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Recurrence", + "defaultValue": { + "id": "/RecurrenceType/Not recurring", + "Name": "Not recurring" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RecurrenceInterval", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Period of Recurrence", + "defaultValue": 1, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkdaysOnly", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Daily Recurrence - Working days", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WeekDays", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Weekly Recurrence at Days", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RecurrenceDayOfMonth", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Recurrence at Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Months" + ], + "name": "RecurrenceMonthOfYear", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Month", + "defaultValue": { + "id": "/Months/January", + "Name": "January" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RecurrenceStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Date", + "label": "Start date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RecurrenceEndDate", + "type": "Date", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Date", + "label": "End date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OccurenceDuration", + "type": "Duration", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Duration", + "label": "Occurence Duration", + "defaultValue": { + "unit": "Days", + "value": 1 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Occurrences", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Occurrences", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "Documents", + "label": "Snapshots", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DashboardAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + } + ] + }, + { + "typeName": "Report", + "label": "Report", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83996", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.1495384.0-6B0014B2C5FBC03B4E6FAD28D9A4B488E5AA9D0C/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Scheduled", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Scheduled", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerPreferredTime", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Scheduler Preferred Time", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerNotificationType", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Scheduler Notification Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerTo", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 8000, + "presentationType": "TextArea", + "label": "Scheduler To", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerCc", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 8000, + "presentationType": "TextArea", + "label": "Scheduler Cc", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerNotificationSubject", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Scheduler Notification Subject", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerNotificationBody", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": -1, + "presentationType": "RichText", + "label": "Scheduler Notification Body", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerPostTopics", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Scheduler Post Topics", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerPostNotifiers", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Scheduler Post Notifiers", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerSaveExportedData", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Scheduler Save Exported Data", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ReportExtensionType" + ], + "name": "SchedulerExportAs", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Scheduler Export As", + "defaultValue": { + "id": "/ReportExtensionType/CSV", + "Name": "CSV" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "RecurrenceType" + ], + "name": "RecurrenceType", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Recurrence", + "defaultValue": { + "id": "/RecurrenceType/Not recurring", + "Name": "Not recurring" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RecurrenceInterval", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Period of Recurrence", + "defaultValue": 1, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkdaysOnly", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Daily Recurrence - Working days", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WeekDays", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Weekly Recurrence at Days", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RecurrenceDayOfMonth", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Recurrence at Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Months" + ], + "name": "RecurrenceMonthOfYear", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Month", + "defaultValue": { + "id": "/Months/January", + "Name": "January" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RecurrenceStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Date", + "label": "Start date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RecurrenceEndDate", + "type": "Date", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Date", + "label": "End date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OccurenceDuration", + "type": "Duration", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Duration", + "label": "Occurence Duration", + "defaultValue": { + "unit": "Days", + "value": 1 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Occurrences", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Occurrences", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Editable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Configurable", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "Documents", + "label": "Snapshots", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ReportAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + } + ] + }, + { + "typeName": "ReportAndDashboard", + "label": "Reports And Dashboards", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Scheduled", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Scheduled", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerPreferredTime", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Scheduler Preferred Time", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerNotificationType", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Scheduler Notification Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerTo", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 8000, + "presentationType": "TextArea", + "label": "Scheduler To", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerCc", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 8000, + "presentationType": "TextArea", + "label": "Scheduler Cc", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerNotificationSubject", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Scheduler Notification Subject", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerNotificationBody", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": -1, + "presentationType": "RichText", + "label": "Scheduler Notification Body", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerPostTopics", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Scheduler Post Topics", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerPostNotifiers", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Scheduler Post Notifiers", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SchedulerSaveExportedData", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Scheduler Save Exported Data", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ReportExtensionType" + ], + "name": "SchedulerExportAs", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Scheduler Export As", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "RecurrenceType" + ], + "name": "RecurrenceType", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Recurrence", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RecurrenceInterval", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Period of Recurrence", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkdaysOnly", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Daily Recurrence - Working days", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WeekDays", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Weekly Recurrence at Days", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RecurrenceDayOfMonth", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Recurrence at Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Months" + ], + "name": "RecurrenceMonthOfYear", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Month", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RecurrenceStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Date", + "label": "Start date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RecurrenceEndDate", + "type": "Date", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Date", + "label": "End date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OccurenceDuration", + "type": "Duration", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Duration", + "label": "Occurence Duration", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Occurrences", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Occurrences", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "Documents", + "label": "Snapshots", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DashboardAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + } + ] + }, + { + "typeName": "FolderForReport", + "label": "Reports Folder", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83997", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.1495380.0-A11074055779554C024A2FA41EB23FD8C1F3A148/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SubItemsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of SubItems", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ChildrenCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Children", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "AllSubItems", + "label": "All Sub Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "FolderContentLink", + "relatedTypeName": "ReportAndDashboard", + "sourceFieldName": "Parent" + }, + { + "name": "ReportsInFolder", + "label": "Reports in Folder", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ReportsHierarchyLink", + "relatedTypeName": "ReportAndDashboard", + "sourceFieldName": "Parent" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + } + ] + }, + { + "typeName": "FoldersAndReports", + "label": "Folder and Report", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DashboardAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "AllSubItems", + "label": "All Sub Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "FolderContentLink", + "relatedTypeName": "ReportAndDashboard", + "sourceFieldName": "Parent" + }, + { + "name": "ReportsInFolder", + "label": "Reports in Folder", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ReportsHierarchyLink", + "relatedTypeName": "ReportAndDashboard", + "sourceFieldName": "Parent" + } + ] + }, + { + "typeName": "Permission", + "label": "Permission Definitions", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Resource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resource", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Role", + "type": "Long", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Access Level", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83998", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "DependencyLink", + "label": "Dependency", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Work Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "DependsOn", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Depends On", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "DependencyType" + ], + "name": "DependencyType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Dependency Type", + "defaultValue": { + "id": "/DependencyType/FTS", + "Name": "FTS" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Lag", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Other", + "label": "Lag", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Shortcut", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Is Shortcut", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "155z5ji6tf5wvleavfgj6ril83999", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "IntegrationsRegistry", + "label": "Integrations Registry", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4000", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "IntegrationAuthenticationType" + ], + "name": "IntegrationAuthenticationType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Integration Authentication Type", + "defaultValue": { + "id": "/IntegrationAuthenticationType/OAuth", + "Name": "OAuth" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AdditionalCredentialField", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Additional Credential Field", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TopicDocumentLink", + "label": "Topic Document Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Topic", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Topic", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4001", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TopicDiscussionLink", + "label": "Topic Discussion Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Topic", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Topic", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4002", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TopicGroupLink", + "label": "Topic Group Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Topic", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Topic", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4003", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TopicExpenseEntryLink", + "label": "Topic ExpenseEntry Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Topic", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Topic", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4004", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TopicExpenseSheetLink", + "label": "Topic ExpenseSheet Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Topic", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Topic", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4005", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TopicCustomerLink", + "label": "Topic Customer Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Topic", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Topic", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4006", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TopicCaseLink", + "label": "Topic Case Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Topic", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Topic", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4007", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TopicWorkItemLink", + "label": "Topic WorkItem Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Topic", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Topic", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4008", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TopicLink", + "label": "Topic Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Topic", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Topic", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Milestone", + "label": "Milestone", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1600, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1950, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4009", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Draft", + "Name": "Draft" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Phase" + ], + "name": "Phase", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Phase", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "StartDateManuallySet", + "presentationType": "Date", + "label": "Start Date", + "defaultValue": "2026-06-02T12:00:00.0000000Z", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "DueDateManuallySet", + "presentationType": "Date", + "label": "Due Date", + "defaultValue": "2026-06-02T12:00:00.0000000Z", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "DurationManuallySet", + "presentationType": "Duration", + "label": "Duration", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Actual Start Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "manuallySetName": "ActualEndDateManuallySet", + "presentationType": "Date", + "label": "Actual End Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TrackStatus" + ], + "name": "TrackStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TrackStatusManuallySet", + "presentationType": "PickList", + "label": "Status", + "defaultValue": { + "id": "/TrackStatus/Not Active", + "Name": "Not Active" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StatusChangedOn", + "type": "Date", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Status Changed on", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Conflicts", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Conflicts Flags", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OnCriticalPath", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Other", + "label": "On Critical Path", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StartDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Start Date Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Due Date Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DurationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Duration Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TrackStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Status Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EarliestStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Earliest Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LatestStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Latest Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EarliestEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Earliest End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LatestEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Latest End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedProgress", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected Progress", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "SchedulingType" + ], + "name": "SchedulingType", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ConstraintsTypeManuallySet", + "presentationType": "PickList", + "label": "Constraint Type", + "defaultValue": { + "id": "/SchedulingType/As Soon As Possible", + "Name": "As Soon As Possible" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ImportedFrom" + ], + "name": "ImportedFrom", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Imported From", + "defaultValue": { + "id": "/ImportedFrom/None", + "Name": "None" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Importance" + ], + "name": "Importance", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "includeDataFields": false + }, + "flags": [], + "presentationType": "PickList", + "label": "Importance", + "defaultValue": { + "id": "/Importance/Normal", + "Name": "Normal" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Priority", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Priority", + "defaultValue": 500, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": true, + "sortable": true, + "format": { + "percentCompleteDisplayFormat": "Detailed", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "PercentCompletedManuallySet", + "presentationType": "Percent", + "label": "% Complete", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompletedManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% Complete Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Manager", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Charged Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ChildrenCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Direct Sub-items", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuccessorsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Successors", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PredecessorsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Predecessors", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllUserResourcesAndPlaceholdersCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of all Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PostsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of V5 Posts", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ConstraintsTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Constraints Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Reportable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "ReportableManuallySet", + "presentationType": "Checkbox", + "label": "Reportable", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ReportableManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Reportable Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ChildShortcutCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Sub Shortcut", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "Project", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "WorkPolicy" + ], + "name": "WorkPolicy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Work Policy", + "defaultValue": { + "id": "/WorkPolicy/Fixed Duration", + "Name": "Fixed Duration" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CommitLevel" + ], + "name": "CommitLevel", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Commit Level", + "defaultValue": { + "id": "/CommitLevel/No Commit", + "Name": "No Commit" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportingStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Reporting start date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StartDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualCostManuallySet", + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DueDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedBudgetManuallySet", + "presentationType": "Currency", + "label": "Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Cost Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budgeted Cost Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Time Tracking Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedPrice", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Price", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentInvested", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Invested", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingBilling", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Billing", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Earned Value", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedRevenueManuallySet", + "presentationType": "Currency", + "label": "Expected Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "CPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualRevenueManuallySet", + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "SPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Expected Revenue Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Revenue Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Profitability", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Profitability", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "RevenueCurrencyType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "RevenueCurrencyTypeManuallySet", + "presentationType": "PickList", + "label": "Revenue Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Revenue Currency Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "CostCurrencyType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "CostCurrencyTypeManuallySet", + "presentationType": "PickList", + "label": "Cost Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CostCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Cost Currency Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Pending" + ], + "name": "Pending", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Pending", + "defaultValue": { + "id": "/Pending/None", + "Name": "None" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "IssuesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Cases", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEndDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual End Date Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllowReportingOnSubItems", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "AllowReportingOnSubItemsManuallySet", + "presentationType": "Checkbox", + "label": "Allow Reporting On Sub Items", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllowReportingOnSubItemsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allow Reporting On Sub Items Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CommittedDate", + "type": "Date", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Committed Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourcesAndPlaceholdersCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "BudgetedHoursManuallySet", + "presentationType": "Duration", + "label": "Budgeted Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Balance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "BudgetStatus" + ], + "name": "BudgetStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "BudgetStatusManuallySet", + "presentationType": "PickList", + "label": "Budget Status", + "defaultValue": { + "id": "/BudgetStatus/Not Active", + "Name": "Not Active" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budget Status Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Balance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffortUpdatedFromTimesheets", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "ActualEffortUpdatedFromTimesheetsManuallySet", + "presentationType": "Checkbox", + "label": "Actual Effort Updated from Timesheets", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEffortUpdatedFromTimesheetsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Effort Updated from Timesheets Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "ParentProject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SfExternalId", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SfExternalName", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Internal ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OrderID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Order ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SKU", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "SKU", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Due Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "InternalStatus", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Internal Status", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Deliverable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Deliverable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DeliverableType", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Deliverable Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Executable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Other", + "label": "Executable", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "Parent", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Amount", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ChargedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ChargedAmountManuallySet", + "presentationType": "Currency", + "label": "Charged Amount", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "TCPI", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "TotalEstimatedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Estimated Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ChargedType" + ], + "name": "Charged", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ChargedTypeManuallySet", + "presentationType": "PickList", + "label": "Charged", + "defaultValue": { + "id": "/ChargedType/Not charged", + "Name": "Not charged" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedAmountManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Charged Amount Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EstimatedStartDate", + "type": "DateTime", + "filterable": false, + "sortable": false, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Estimated Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueEarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EV", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EstimatedEndDate", + "type": "DateTime", + "filterable": false, + "sortable": false, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Estimated End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "EstimatedDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Estimated Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RTCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RTCPI", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ReportableStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reportable Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CompletnessDefinition", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "% Completeness Uncertain", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ReportableEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reportable End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TaskReportingPolicy" + ], + "name": "TaskReportingPolicy", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TaskReportingPolicyManuallySet", + "presentationType": "PickList", + "label": "Leaf Tasks Progress Reporting Policy", + "defaultValue": { + "id": "/TaskReportingPolicy/Shared", + "Name": "Shared" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ConflictType" + ], + "name": "ConflictType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Conflicts", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TaskReportingPolicyManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Leaf Tasks Progress Reporting Policy Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FloatingTask", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "To Do List Item", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IndividualReporting", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Individual Completeness Using", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AggregatedStopwatchesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Aggregate Stopwatch Count", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CalculateCompletenessBasedOnEfforts", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "CalculateCompletenessBasedOnEffortsManuallySet", + "presentationType": "Checkbox", + "label": "Calculate %complete based on efforts", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "StopwatchAggregateState" + ], + "name": "ActiveStopwatch", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "includeDataFields": false + }, + "presentationType": "PickList", + "label": "Active Stopwatch", + "defaultValue": { + "id": "/StopwatchAggregateState/None", + "Name": "None" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CalculateCompletenessBasedOnEffortsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Calculate %complete based on efforts Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StopwatchesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "Stopwatches Count", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHoursManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Budgeted Work Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyEAC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "EAC", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PendingTimeTrackingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyREAC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EAC", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "CurrencyETC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.48.0-662E87090725F9D38CE26B446D2AC28BB19D0DAC/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyRETC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SetByLeveling", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Set by leveling", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Template" + ], + "name": "Template", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Template", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GeographicalRegion" + ], + "name": "GeographicalRegion", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Geographical Region", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ResourceUtilizationCategory" + ], + "name": "ResourceUtilizationCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ResourceUtilizationCategoryManuallySet", + "presentationType": "PickList", + "label": "Resource Utilization Category", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Countries" + ], + "name": "Country", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Country", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CountryState" + ], + "name": "StateProvince", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State/Province", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ResourceUtilizationCategoryManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resource Utilization Category Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ExpenseTypeManuallySet", + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost OPEX", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpenseTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Expense Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ActualCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost OPEX", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLROpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLRCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FinancialStart", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Financial Start", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FinancialEnd", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Financial End", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FinancialOldStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Financial old start date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Cost Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Revenue Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Opex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Opex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual billable hours", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNonBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual non billable hours", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ResourceRateDate", + "type": "Date", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ResourceRateDateManuallySet", + "presentationType": "Date", + "label": "Resource Rate Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourceRateDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resource Rate Date Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastReplanningDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Replanning date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYPlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UserResourcesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "# of User Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllUserResourcesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "# of all User Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ProjectCapexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Capex Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectOpexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Opex Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Agreed Date for Exchange rate", + "defaultValue": "2026-06-02T00:00:00.0000000", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Agreed Date for Exchange rate is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Funding", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "FundingManuallySet", + "presentationType": "Currency", + "label": "Funding", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Funding Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingGap", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Gap", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Allocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "AllocationManuallySet", + "presentationType": "Currency", + "label": "Allocation", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "AllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allocation Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SubAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "SubAllocationManuallySet", + "presentationType": "Currency", + "label": "Sub Allocation", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SubAllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Sub Allocation Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TargetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Target Margin", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TotalAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Unallocated", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unallocated", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UnusedAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unused Allocation", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingAvailable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Available", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor & Budget Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingRemaining", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Remaining", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor & Actual Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Contribution", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Contribution", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Planned Profitability %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LaborCostPercentComplete", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "% Complete Labor Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenueNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Planned Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Contract" + ], + "name": "Contract", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Contract", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ContractPurchaseOrder" + ], + "name": "ContractPurchaseOrder", + "type": "Entity", + "filterable": false, + "sortable": false, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Contract Purchase Order", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CompletingPhase", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Completing Phase", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "MilestoneType" + ], + "name": "MilestoneType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Milestone Type", + "defaultValue": { + "id": "/MilestoneType/General", + "Name": "General" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "AllImpacting", + "label": "Impacting and Sub Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemHierarchyLink", + "relatedTypeName": "PlanningComponent", + "sourceFieldName": "Parent" + }, + { + "name": "Tasks", + "label": "Tasks", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "GenericTask", + "sourceFieldName": "Milestone" + }, + { + "name": "Children", + "label": "Sub Items", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RealWorkItemHierarchyLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Parent" + }, + { + "name": "Shortcuts", + "label": "Shortcuts", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ShortcutLink", + "relatedTypeName": "PlanningComponent", + "sourceFieldName": "Parent" + }, + { + "name": "Impacting", + "label": "Impacting", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ProgressImpactLink", + "relatedTypeName": "PlanningComponent", + "sourceFieldName": "Parent" + }, + { + "name": "AggregatedAssetResources", + "label": "Work Item's aggregated Asset Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "AssetResourceLinkAggregated", + "relatedTypeName": "GenericAsset", + "sourceFieldName": "WorkItem" + }, + { + "name": "AggregatedLaborResources", + "label": "Work Item's aggregated Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "LaborResourceLinkAggregated", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectFixedPriceResources", + "label": "Work Item's direct Fixed Price Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "FixedPriceResourceLinkDirect", + "relatedTypeName": "FixedPriceResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "AggregatedFixedPriceResources", + "label": "Work Item's aggregated Fixed Price Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "FixedPriceResourceLinkAggregated", + "relatedTypeName": "FixedPriceResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "FinancialResources", + "label": "Financial Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLinkFinancial", + "relatedTypeName": "GenericResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectNonLaborResources", + "label": "Non-Labor Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "NonLaborResourceLinkDirect", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "AggregatedNonLaborResources", + "label": "Aggregated Non-Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "NonLaborResourceLinkAggregated", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllImpacted", + "label": "Impacted and Parents", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemHierarchyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Child" + }, + { + "name": "WhereUsedAsShortcut", + "label": "Shortcut in", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ShortcutLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Child" + }, + { + "name": "ImpactedBy", + "label": "Impacted By", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ProgressImpactLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Child" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "RelatedExpenses", + "label": "Aggregated Expenses", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Expense" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "ProjectCustomers", + "label": "Project Customers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Customer" + }, + { + "name": "TeamMembersAndPlaceholders", + "label": "Work Item Team Members", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "AttachedPosts", + "label": "V5 Posts", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Post", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "RelatedTimesheetEntries", + "label": "Time Entries", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Timesheet", + "sourceFieldName": "WorkItem" + }, + { + "name": "Expenses", + "label": "Expenses", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Expense", + "sourceFieldName": "WorkItem" + }, + { + "name": "OriginatedIssues", + "label": "Originated Cases", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "OriginatedFrom" + }, + { + "name": "Issues", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Case", + "sourceFieldName": "WorkItem" + }, + { + "name": "ResourcesAndPlaceholders", + "label": "Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Reviewers", + "label": "Reviewers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ReviewerLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Managers", + "label": "Managers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ManagerResourceLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "AllTeamMembersAndPlaceholders", + "label": "All Team Members And Placeholders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllManagers", + "label": "All Managers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllReviewers", + "label": "All Reviewers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllResourcesAndPlaceholders", + "label": "All Resources And Placeholders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "Successors", + "label": "Successors", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DependencyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "WorkItem" + }, + { + "name": "Predecessors", + "label": "Predecessors", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DependencyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "DependsOn" + }, + { + "name": "AllTeam", + "label": "Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "UsersOpenedStopwatches", + "label": "Active Stopwatch Users", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "Stopwatch", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicWorkItemLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "AllWorkItemsWithShortcuts", + "label": "All Work Items With Shortcuts", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "WorkItem" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "CustomizationProfilingData", + "label": "Customization Profiling Data", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "CustomizationProfilingData", + "sourceFieldName": "SourceObject" + }, + { + "name": "AdditionalObjectProperties", + "label": "Overview", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "AdditionalObjectProperties", + "sourceFieldName": "RelatedItem" + }, + { + "name": "RelatedIssues", + "label": "Issues", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Issue", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedRisks", + "label": "Risks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Risk", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedBugs", + "label": "Bugs", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Bug", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedRequests", + "label": "Requests", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "EnhancementRequest", + "sourceFieldName": "WorkItem" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "LoadOfUserMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "WorkItemVersion", + "sourceFieldName": "VersionSourceObject" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "LoadOfUser", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "StaffTimePhasedDataOfUserDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "ResourceEntity" + }, + { + "name": "StaffTimePhasedDataOfUserMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "ResourceEntity" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Targets", + "label": "Targets", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Target", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Objectives", + "label": "Objectives", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Objective", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Contributions", + "label": "Contributions", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Contribution", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "UserTeamMembers", + "label": "Work Item User Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllUserResources", + "label": "All User Resources", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "UserResources", + "label": "User Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "GenericUser", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllUserTeamMembers", + "label": "All User Team Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + } + ] + }, + { + "typeName": "Task", + "label": "Task", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1600, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1950, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4010", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Draft", + "Name": "Draft" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Phase" + ], + "name": "Phase", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Phase", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "StartDateManuallySet", + "presentationType": "Date", + "label": "Start Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "DueDateManuallySet", + "presentationType": "Date", + "label": "Due Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "DurationManuallySet", + "presentationType": "Duration", + "label": "Duration", + "defaultValue": { + "unit": "Days", + "value": 1 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Actual Start Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "manuallySetName": "ActualEndDateManuallySet", + "presentationType": "Date", + "label": "Actual End Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TrackStatus" + ], + "name": "TrackStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TrackStatusManuallySet", + "presentationType": "PickList", + "label": "Status", + "defaultValue": { + "id": "/TrackStatus/Not Active", + "Name": "Not Active" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StatusChangedOn", + "type": "Date", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Status Changed on", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Conflicts", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Conflicts Flags", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OnCriticalPath", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Other", + "label": "On Critical Path", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StartDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Start Date Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Due Date Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DurationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Duration Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TrackStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Status Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EarliestStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Earliest Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LatestStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Latest Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EarliestEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Earliest End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LatestEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Latest End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedProgress", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected Progress", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "SchedulingType" + ], + "name": "SchedulingType", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ConstraintsTypeManuallySet", + "presentationType": "PickList", + "label": "Constraint Type", + "defaultValue": { + "id": "/SchedulingType/As Soon As Possible", + "Name": "As Soon As Possible" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ImportedFrom" + ], + "name": "ImportedFrom", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Imported From", + "defaultValue": { + "id": "/ImportedFrom/None", + "Name": "None" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Importance" + ], + "name": "Importance", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "includeDataFields": false + }, + "flags": [], + "presentationType": "PickList", + "label": "Importance", + "defaultValue": { + "id": "/Importance/Normal", + "Name": "Normal" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Priority", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Priority", + "defaultValue": 500, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": true, + "sortable": true, + "format": { + "percentCompleteDisplayFormat": "Detailed", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "PercentCompletedManuallySet", + "presentationType": "Percent", + "label": "% Complete", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompletedManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% Complete Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Manager", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Charged Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ChildrenCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Direct Sub-items", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuccessorsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Successors", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PredecessorsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Predecessors", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllUserResourcesAndPlaceholdersCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of all Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PostsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of V5 Posts", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ConstraintsTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Constraints Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Reportable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "ReportableManuallySet", + "presentationType": "Checkbox", + "label": "Reportable", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ReportableManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Reportable Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ChildShortcutCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Sub Shortcut", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "Project", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "WorkPolicy" + ], + "name": "WorkPolicy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Work Policy", + "defaultValue": { + "id": "/WorkPolicy/Fixed Duration", + "Name": "Fixed Duration" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CommitLevel" + ], + "name": "CommitLevel", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Commit Level", + "defaultValue": { + "id": "/CommitLevel/No Commit", + "Name": "No Commit" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportingStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Reporting start date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StartDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualCostManuallySet", + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DueDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedBudgetManuallySet", + "presentationType": "Currency", + "label": "Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Cost Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budgeted Cost Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Time Tracking Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedPrice", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Price", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentInvested", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Invested", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingBilling", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Billing", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Earned Value", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedRevenueManuallySet", + "presentationType": "Currency", + "label": "Expected Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "CPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualRevenueManuallySet", + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "SPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Expected Revenue Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Revenue Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Profitability", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Profitability", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "RevenueCurrencyType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "RevenueCurrencyTypeManuallySet", + "presentationType": "PickList", + "label": "Revenue Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Revenue Currency Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "CostCurrencyType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "CostCurrencyTypeManuallySet", + "presentationType": "PickList", + "label": "Cost Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CostCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Cost Currency Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Pending" + ], + "name": "Pending", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Pending", + "defaultValue": { + "id": "/Pending/None", + "Name": "None" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "IssuesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Cases", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEndDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual End Date Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllowReportingOnSubItems", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "AllowReportingOnSubItemsManuallySet", + "presentationType": "Checkbox", + "label": "Allow Reporting On Sub Items", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllowReportingOnSubItemsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allow Reporting On Sub Items Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CommittedDate", + "type": "Date", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Committed Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourcesAndPlaceholdersCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "BudgetedHoursManuallySet", + "presentationType": "Duration", + "label": "Budgeted Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Balance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "BudgetStatus" + ], + "name": "BudgetStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "BudgetStatusManuallySet", + "presentationType": "PickList", + "label": "Budget Status", + "defaultValue": { + "id": "/BudgetStatus/Not Active", + "Name": "Not Active" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budget Status Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Balance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffortUpdatedFromTimesheets", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "ActualEffortUpdatedFromTimesheetsManuallySet", + "presentationType": "Checkbox", + "label": "Actual Effort Updated from Timesheets", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEffortUpdatedFromTimesheetsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Effort Updated from Timesheets Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "ParentProject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SfExternalId", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SfExternalName", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Internal ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OrderID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Order ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SKU", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "SKU", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Due Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "InternalStatus", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Internal Status", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Deliverable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Deliverable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DeliverableType", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Deliverable Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Executable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Other", + "label": "Executable", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItem" + ], + "name": "Parent", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Amount", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ChargedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ChargedAmountManuallySet", + "presentationType": "Currency", + "label": "Charged Amount", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "TCPI", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "TotalEstimatedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Estimated Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ChargedType" + ], + "name": "Charged", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ChargedTypeManuallySet", + "presentationType": "PickList", + "label": "Charged", + "defaultValue": { + "id": "/ChargedType/Not charged", + "Name": "Not charged" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedAmountManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Charged Amount Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EstimatedStartDate", + "type": "DateTime", + "filterable": false, + "sortable": false, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Estimated Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueEarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EV", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EstimatedEndDate", + "type": "DateTime", + "filterable": false, + "sortable": false, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Estimated End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "EstimatedDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Estimated Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RTCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RTCPI", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ReportableStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reportable Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CompletnessDefinition", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "% Completeness Uncertain", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ReportableEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reportable End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TaskReportingPolicy" + ], + "name": "TaskReportingPolicy", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TaskReportingPolicyManuallySet", + "presentationType": "PickList", + "label": "Leaf Tasks Progress Reporting Policy", + "defaultValue": { + "id": "/TaskReportingPolicy/Shared", + "Name": "Shared" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ConflictType" + ], + "name": "ConflictType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Conflicts", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TaskReportingPolicyManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Leaf Tasks Progress Reporting Policy Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FloatingTask", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "To Do List Item", + "defaultValue": true, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IndividualReporting", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Individual Completeness Using", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AggregatedStopwatchesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Aggregate Stopwatch Count", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CalculateCompletenessBasedOnEfforts", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "CalculateCompletenessBasedOnEffortsManuallySet", + "presentationType": "Checkbox", + "label": "Calculate %complete based on efforts", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "StopwatchAggregateState" + ], + "name": "ActiveStopwatch", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "includeDataFields": false + }, + "presentationType": "PickList", + "label": "Active Stopwatch", + "defaultValue": { + "id": "/StopwatchAggregateState/None", + "Name": "None" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CalculateCompletenessBasedOnEffortsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Calculate %complete based on efforts Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StopwatchesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "Stopwatches Count", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHoursManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Budgeted Work Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyEAC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "EAC", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PendingTimeTrackingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyREAC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EAC", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "CurrencyETC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.490797.0-087FF95A68A016AFD27BD6A7E0E9B90C41C15789/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyRETC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SetByLeveling", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Set by leveling", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Template" + ], + "name": "Template", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Template", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GeographicalRegion" + ], + "name": "GeographicalRegion", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Geographical Region", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ResourceUtilizationCategory" + ], + "name": "ResourceUtilizationCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ResourceUtilizationCategoryManuallySet", + "presentationType": "PickList", + "label": "Resource Utilization Category", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Countries" + ], + "name": "Country", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Country", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CountryState" + ], + "name": "StateProvince", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State/Province", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ResourceUtilizationCategoryManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resource Utilization Category Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ExpenseTypeManuallySet", + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost OPEX", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpenseTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Expense Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ActualCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost OPEX", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLROpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLRCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FinancialStart", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Financial Start", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FinancialEnd", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Financial End", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FinancialOldStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Financial old start date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Cost Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Revenue Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Opex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Opex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual billable hours", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNonBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual non billable hours", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ResourceRateDate", + "type": "Date", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ResourceRateDateManuallySet", + "presentationType": "Date", + "label": "Resource Rate Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourceRateDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resource Rate Date Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastReplanningDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Replanning date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYPlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UserResourcesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "# of User Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllUserResourcesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "# of all User Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ProjectCapexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Capex Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectOpexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Opex Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Agreed Date for Exchange rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Agreed Date for Exchange rate is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Funding", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "FundingManuallySet", + "presentationType": "Currency", + "label": "Funding", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Funding Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingGap", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Gap", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Allocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "AllocationManuallySet", + "presentationType": "Currency", + "label": "Allocation", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "AllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allocation Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SubAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "SubAllocationManuallySet", + "presentationType": "Currency", + "label": "Sub Allocation", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SubAllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Sub Allocation Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TargetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Target Margin", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TotalAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Unallocated", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unallocated", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UnusedAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unused Allocation", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingAvailable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Available", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor & Budget Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingRemaining", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Remaining", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor & Actual Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Contribution", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Contribution", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Planned Profitability %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LaborCostPercentComplete", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "% Complete Labor Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenueNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Planned Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Contract" + ], + "name": "Contract", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Contract", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ContractPurchaseOrder" + ], + "name": "ContractPurchaseOrder", + "type": "Entity", + "filterable": false, + "sortable": false, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Contract Purchase Order", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "TaskType" + ], + "name": "TaskType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Task Type", + "defaultValue": { + "id": "/TaskType/General", + "Name": "General" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Milestone" + ], + "name": "Milestone", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Milestone", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "InstanceNumber", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Instance Number", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OccurrenceStartDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Occurrence Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "DirectLaborResources", + "label": "Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "LaborResourceLinkDirect", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectNonLaborResources", + "label": "Non-Labor Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "NonLaborResourceLinkDirect", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectFixedPriceResources", + "label": "Work Item's direct Fixed Price Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "FixedPriceResourceLinkDirect", + "relatedTypeName": "FixedPriceResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "FinancialResources", + "label": "Financial Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLinkFinancial", + "relatedTypeName": "GenericResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectAssetResources", + "label": "Work Item's direct Asset Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "AssetResourceLinkDirect", + "relatedTypeName": "GenericAsset", + "sourceFieldName": "WorkItem" + }, + { + "name": "Groups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupTaskLink", + "relatedTypeName": "Group", + "sourceFieldName": "Entity" + }, + { + "name": "AllImpacting", + "label": "Impacting and Sub Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemHierarchyLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Parent" + }, + { + "name": "Children", + "label": "Sub Items", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RealWorkItemHierarchyLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Parent" + }, + { + "name": "Shortcuts", + "label": "Shortcuts", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ShortcutLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Parent" + }, + { + "name": "Impacting", + "label": "Impacting", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ProgressImpactLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Parent" + }, + { + "name": "AllImpacted", + "label": "Impacted and Parents", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemHierarchyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Child" + }, + { + "name": "WhereUsedAsShortcut", + "label": "Shortcut in", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ShortcutLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Child" + }, + { + "name": "ImpactedBy", + "label": "Impacted By", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ProgressImpactLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Child" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "RelatedExpenses", + "label": "Aggregated Expenses", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Expense" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "ProjectCustomers", + "label": "Project Customers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Customer" + }, + { + "name": "TeamMembersAndPlaceholders", + "label": "Work Item Team Members", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "AttachedPosts", + "label": "V5 Posts", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Post", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "RelatedTimesheetEntries", + "label": "Time Entries", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Timesheet", + "sourceFieldName": "WorkItem" + }, + { + "name": "Expenses", + "label": "Expenses", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Expense", + "sourceFieldName": "WorkItem" + }, + { + "name": "OriginatedIssues", + "label": "Originated Cases", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "OriginatedFrom" + }, + { + "name": "Issues", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Case", + "sourceFieldName": "WorkItem" + }, + { + "name": "ResourcesAndPlaceholders", + "label": "Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Reviewers", + "label": "Reviewers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ReviewerLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Managers", + "label": "Managers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ManagerResourceLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "AllTeamMembersAndPlaceholders", + "label": "All Team Members And Placeholders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllManagers", + "label": "All Managers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllReviewers", + "label": "All Reviewers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllResourcesAndPlaceholders", + "label": "All Resources And Placeholders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "Successors", + "label": "Successors", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DependencyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "WorkItem" + }, + { + "name": "Predecessors", + "label": "Predecessors", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DependencyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "DependsOn" + }, + { + "name": "AllTeam", + "label": "Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "UsersOpenedStopwatches", + "label": "Active Stopwatch Users", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "Stopwatch", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicWorkItemLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "AllWorkItemsWithShortcuts", + "label": "All Work Items With Shortcuts", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "WorkItem" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "CustomizationProfilingData", + "label": "Customization Profiling Data", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "CustomizationProfilingData", + "sourceFieldName": "SourceObject" + }, + { + "name": "AdditionalObjectProperties", + "label": "Overview", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "AdditionalObjectProperties", + "sourceFieldName": "RelatedItem" + }, + { + "name": "RelatedIssues", + "label": "Issues", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Issue", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedRisks", + "label": "Risks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Risk", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedBugs", + "label": "Bugs", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Bug", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedRequests", + "label": "Requests", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "EnhancementRequest", + "sourceFieldName": "WorkItem" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "LoadOfUserMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "WorkItemVersion", + "sourceFieldName": "VersionSourceObject" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "LoadOfUser", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "StaffTimePhasedDataOfUserDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "ResourceEntity" + }, + { + "name": "StaffTimePhasedDataOfUserMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "ResourceEntity" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Targets", + "label": "Targets", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Target", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Objectives", + "label": "Objectives", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Objective", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Contributions", + "label": "Contributions", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Contribution", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "UserTeamMembers", + "label": "Work Item User Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllUserResources", + "label": "All User Resources", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "UserResources", + "label": "User Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "GenericUser", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllUserTeamMembers", + "label": "All User Team Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + } + ] + }, + { + "typeName": "RecurringTask", + "label": "Recurring Task", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1600, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1950, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4011", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Draft", + "Name": "Draft" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Phase" + ], + "name": "Phase", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Phase", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "StartDateManuallySet", + "presentationType": "Date", + "label": "Start Date", + "defaultValue": "2026-06-02T12:00:00.0000000Z", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "DueDateManuallySet", + "presentationType": "Date", + "label": "Due Date", + "defaultValue": "2026-06-02T21:00:00.0000000Z", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "DurationManuallySet", + "presentationType": "Duration", + "label": "Duration", + "defaultValue": { + "unit": "Days", + "value": 1 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Actual Start Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "manuallySetName": "ActualEndDateManuallySet", + "presentationType": "Date", + "label": "Actual End Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TrackStatus" + ], + "name": "TrackStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TrackStatusManuallySet", + "presentationType": "PickList", + "label": "Status", + "defaultValue": { + "id": "/TrackStatus/Not Active", + "Name": "Not Active" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StatusChangedOn", + "type": "Date", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Status Changed on", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Conflicts", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Conflicts Flags", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OnCriticalPath", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Other", + "label": "On Critical Path", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StartDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Start Date Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Due Date Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DurationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Duration Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TrackStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Status Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EarliestStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Earliest Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LatestStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Latest Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EarliestEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Earliest End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LatestEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Latest End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedProgress", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected Progress", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "SchedulingType" + ], + "name": "SchedulingType", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ConstraintsTypeManuallySet", + "presentationType": "PickList", + "label": "Constraint Type", + "defaultValue": { + "id": "/SchedulingType/As Soon As Possible", + "Name": "As Soon As Possible" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ImportedFrom" + ], + "name": "ImportedFrom", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Imported From", + "defaultValue": { + "id": "/ImportedFrom/None", + "Name": "None" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Importance" + ], + "name": "Importance", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "includeDataFields": false + }, + "flags": [], + "presentationType": "PickList", + "label": "Importance", + "defaultValue": { + "id": "/Importance/Normal", + "Name": "Normal" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Priority", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Priority", + "defaultValue": 500, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": true, + "sortable": true, + "format": { + "percentCompleteDisplayFormat": "Detailed", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "PercentCompletedManuallySet", + "presentationType": "Percent", + "label": "% Complete", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompletedManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% Complete Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Manager", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Charged Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ChildrenCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Direct Sub-items", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuccessorsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Successors", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PredecessorsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Predecessors", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllUserResourcesAndPlaceholdersCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of all Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PostsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of V5 Posts", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ConstraintsTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Constraints Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Reportable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "ReportableManuallySet", + "presentationType": "Checkbox", + "label": "Reportable", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ReportableManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Reportable Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ChildShortcutCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Sub Shortcut", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "Project", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "WorkPolicy" + ], + "name": "WorkPolicy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Work Policy", + "defaultValue": { + "id": "/WorkPolicy/Fixed Duration", + "Name": "Fixed Duration" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CommitLevel" + ], + "name": "CommitLevel", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Commit Level", + "defaultValue": { + "id": "/CommitLevel/No Commit", + "Name": "No Commit" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportingStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Reporting start date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StartDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualCostManuallySet", + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DueDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedBudgetManuallySet", + "presentationType": "Currency", + "label": "Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Cost Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budgeted Cost Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Time Tracking Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedPrice", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Price", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentInvested", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Invested", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingBilling", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Billing", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Earned Value", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedRevenueManuallySet", + "presentationType": "Currency", + "label": "Expected Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "CPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualRevenueManuallySet", + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "SPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Expected Revenue Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Revenue Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Profitability", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Profitability", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "RevenueCurrencyType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "RevenueCurrencyTypeManuallySet", + "presentationType": "PickList", + "label": "Revenue Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Revenue Currency Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "CostCurrencyType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "CostCurrencyTypeManuallySet", + "presentationType": "PickList", + "label": "Cost Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CostCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Cost Currency Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Pending" + ], + "name": "Pending", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Pending", + "defaultValue": { + "id": "/Pending/None", + "Name": "None" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "IssuesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Cases", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEndDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual End Date Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllowReportingOnSubItems", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "AllowReportingOnSubItemsManuallySet", + "presentationType": "Checkbox", + "label": "Allow Reporting On Sub Items", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllowReportingOnSubItemsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allow Reporting On Sub Items Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CommittedDate", + "type": "Date", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Committed Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourcesAndPlaceholdersCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "BudgetedHoursManuallySet", + "presentationType": "Duration", + "label": "Budgeted Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Balance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "BudgetStatus" + ], + "name": "BudgetStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "BudgetStatusManuallySet", + "presentationType": "PickList", + "label": "Budget Status", + "defaultValue": { + "id": "/BudgetStatus/Not Active", + "Name": "Not Active" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budget Status Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Balance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffortUpdatedFromTimesheets", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "ActualEffortUpdatedFromTimesheetsManuallySet", + "presentationType": "Checkbox", + "label": "Actual Effort Updated from Timesheets", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEffortUpdatedFromTimesheetsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Effort Updated from Timesheets Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "ParentProject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SfExternalId", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SfExternalName", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Internal ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OrderID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Order ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SKU", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "SKU", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Due Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "InternalStatus", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Internal Status", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Deliverable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Deliverable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DeliverableType", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Deliverable Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Executable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Other", + "label": "Executable", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItem" + ], + "name": "Parent", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Amount", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ChargedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ChargedAmountManuallySet", + "presentationType": "Currency", + "label": "Charged Amount", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "TCPI", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "TotalEstimatedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Estimated Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ChargedType" + ], + "name": "Charged", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ChargedTypeManuallySet", + "presentationType": "PickList", + "label": "Charged", + "defaultValue": { + "id": "/ChargedType/Not charged", + "Name": "Not charged" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedAmountManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Charged Amount Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EstimatedStartDate", + "type": "DateTime", + "filterable": false, + "sortable": false, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Estimated Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueEarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EV", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EstimatedEndDate", + "type": "DateTime", + "filterable": false, + "sortable": false, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Estimated End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "EstimatedDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Estimated Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RTCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RTCPI", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ReportableStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reportable Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CompletnessDefinition", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "% Completeness Uncertain", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ReportableEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reportable End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TaskReportingPolicy" + ], + "name": "TaskReportingPolicy", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TaskReportingPolicyManuallySet", + "presentationType": "PickList", + "label": "Leaf Tasks Progress Reporting Policy", + "defaultValue": { + "id": "/TaskReportingPolicy/Shared", + "Name": "Shared" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ConflictType" + ], + "name": "ConflictType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Conflicts", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TaskReportingPolicyManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Leaf Tasks Progress Reporting Policy Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FloatingTask", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "To Do List Item", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IndividualReporting", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Individual Completeness Using", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AggregatedStopwatchesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Aggregate Stopwatch Count", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CalculateCompletenessBasedOnEfforts", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "CalculateCompletenessBasedOnEffortsManuallySet", + "presentationType": "Checkbox", + "label": "Calculate %complete based on efforts", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "StopwatchAggregateState" + ], + "name": "ActiveStopwatch", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "includeDataFields": false + }, + "presentationType": "PickList", + "label": "Active Stopwatch", + "defaultValue": { + "id": "/StopwatchAggregateState/None", + "Name": "None" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CalculateCompletenessBasedOnEffortsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Calculate %complete based on efforts Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StopwatchesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "Stopwatches Count", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHoursManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Budgeted Work Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyEAC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "EAC", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PendingTimeTrackingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyREAC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EAC", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "CurrencyETC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.24524.0-65DDCA7D0268698493346706E0EADE15119E8EC2/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyRETC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SetByLeveling", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Set by leveling", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Template" + ], + "name": "Template", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Template", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GeographicalRegion" + ], + "name": "GeographicalRegion", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Geographical Region", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ResourceUtilizationCategory" + ], + "name": "ResourceUtilizationCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ResourceUtilizationCategoryManuallySet", + "presentationType": "PickList", + "label": "Resource Utilization Category", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Countries" + ], + "name": "Country", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Country", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CountryState" + ], + "name": "StateProvince", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State/Province", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ResourceUtilizationCategoryManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resource Utilization Category Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ExpenseTypeManuallySet", + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost OPEX", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpenseTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Expense Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ActualCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost OPEX", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLROpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLRCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FinancialStart", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Financial Start", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FinancialEnd", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Financial End", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FinancialOldStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Financial old start date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Cost Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Revenue Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Opex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Opex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual billable hours", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNonBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual non billable hours", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ResourceRateDate", + "type": "Date", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ResourceRateDateManuallySet", + "presentationType": "Date", + "label": "Resource Rate Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourceRateDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resource Rate Date Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastReplanningDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Replanning date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYPlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UserResourcesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "# of User Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllUserResourcesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "# of all User Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ProjectCapexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Capex Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectOpexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Opex Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Agreed Date for Exchange rate", + "defaultValue": "2026-06-02T00:00:00.0000000", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Agreed Date for Exchange rate is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Funding", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "FundingManuallySet", + "presentationType": "Currency", + "label": "Funding", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Funding Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingGap", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Gap", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Allocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "AllocationManuallySet", + "presentationType": "Currency", + "label": "Allocation", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "AllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allocation Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SubAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "SubAllocationManuallySet", + "presentationType": "Currency", + "label": "Sub Allocation", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SubAllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Sub Allocation Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TargetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Target Margin", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TotalAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Unallocated", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unallocated", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UnusedAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unused Allocation", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingAvailable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Available", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor & Budget Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingRemaining", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Remaining", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor & Actual Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Contribution", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Contribution", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Planned Profitability %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LaborCostPercentComplete", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "% Complete Labor Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenueNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Planned Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Contract" + ], + "name": "Contract", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Contract", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ContractPurchaseOrder" + ], + "name": "ContractPurchaseOrder", + "type": "Entity", + "filterable": false, + "sortable": false, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Contract Purchase Order", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "TaskType" + ], + "name": "TaskType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Task Type", + "defaultValue": { + "id": "/TaskType/General", + "Name": "General" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Milestone" + ], + "name": "Milestone", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Milestone", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "RecurrenceType" + ], + "name": "RecurrenceType", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Recurrence", + "defaultValue": { + "id": "/RecurrenceType/Not recurring", + "Name": "Not recurring" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RecurrenceInterval", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Period of Recurrence", + "defaultValue": 1, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkdaysOnly", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Daily Recurrence - Working days", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WeekDays", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Weekly Recurrence at Days", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RecurrenceDayOfMonth", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Recurrence at Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Months" + ], + "name": "RecurrenceMonthOfYear", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Month", + "defaultValue": { + "id": "/Months/January", + "Name": "January" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RecurrenceStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Date", + "label": "Start date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RecurrenceEndDate", + "type": "Date", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Date", + "label": "End date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OccurenceDuration", + "type": "Duration", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Duration", + "label": "Occurrence Duration", + "defaultValue": { + "unit": "Days", + "value": 1 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Occurrences", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Occurrences", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "Groups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupTaskLink", + "relatedTypeName": "Group", + "sourceFieldName": "Entity" + }, + { + "name": "AllImpacting", + "label": "Impacting and Sub Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemHierarchyLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Parent" + }, + { + "name": "Children", + "label": "Sub Items", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RealWorkItemHierarchyLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Parent" + }, + { + "name": "Shortcuts", + "label": "Shortcuts", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ShortcutLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Parent" + }, + { + "name": "Impacting", + "label": "Impacting", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ProgressImpactLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Parent" + }, + { + "name": "AllImpacted", + "label": "Impacted and Parents", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemHierarchyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Child" + }, + { + "name": "WhereUsedAsShortcut", + "label": "Shortcut in", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ShortcutLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Child" + }, + { + "name": "ImpactedBy", + "label": "Impacted By", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ProgressImpactLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Child" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "RelatedExpenses", + "label": "Aggregated Expenses", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Expense" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "ProjectCustomers", + "label": "Project Customers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Customer" + }, + { + "name": "TeamMembersAndPlaceholders", + "label": "Work Item Team Members", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "AttachedPosts", + "label": "V5 Posts", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Post", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "RelatedTimesheetEntries", + "label": "Time Entries", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Timesheet", + "sourceFieldName": "WorkItem" + }, + { + "name": "Expenses", + "label": "Expenses", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Expense", + "sourceFieldName": "WorkItem" + }, + { + "name": "OriginatedIssues", + "label": "Originated Cases", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "OriginatedFrom" + }, + { + "name": "Issues", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Case", + "sourceFieldName": "WorkItem" + }, + { + "name": "ResourcesAndPlaceholders", + "label": "Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Reviewers", + "label": "Reviewers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ReviewerLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Managers", + "label": "Managers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ManagerResourceLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "AllTeamMembersAndPlaceholders", + "label": "All Team Members And Placeholders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllManagers", + "label": "All Managers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllReviewers", + "label": "All Reviewers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllResourcesAndPlaceholders", + "label": "All Resources And Placeholders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "Successors", + "label": "Successors", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DependencyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "WorkItem" + }, + { + "name": "Predecessors", + "label": "Predecessors", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DependencyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "DependsOn" + }, + { + "name": "AllTeam", + "label": "Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "UsersOpenedStopwatches", + "label": "Active Stopwatch Users", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "Stopwatch", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicWorkItemLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "AllWorkItemsWithShortcuts", + "label": "All Work Items With Shortcuts", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "WorkItem" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "CustomizationProfilingData", + "label": "Customization Profiling Data", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "CustomizationProfilingData", + "sourceFieldName": "SourceObject" + }, + { + "name": "AdditionalObjectProperties", + "label": "Overview", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "AdditionalObjectProperties", + "sourceFieldName": "RelatedItem" + }, + { + "name": "RelatedIssues", + "label": "Issues", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Issue", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedRisks", + "label": "Risks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Risk", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedBugs", + "label": "Bugs", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Bug", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedRequests", + "label": "Requests", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "EnhancementRequest", + "sourceFieldName": "WorkItem" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "LoadOfUserMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "WorkItemVersion", + "sourceFieldName": "VersionSourceObject" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "LoadOfUser", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "StaffTimePhasedDataOfUserDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "ResourceEntity" + }, + { + "name": "StaffTimePhasedDataOfUserMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "ResourceEntity" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Targets", + "label": "Targets", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Target", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Objectives", + "label": "Objectives", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Objective", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Contributions", + "label": "Contributions", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Contribution", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "UserTeamMembers", + "label": "Work Item User Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllUserResources", + "label": "All User Resources", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "UserResources", + "label": "User Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "GenericUser", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllUserTeamMembers", + "label": "All User Team Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + } + ] + }, + { + "typeName": "GenericTask", + "label": "Task", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1600, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1950, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Phase" + ], + "name": "Phase", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Phase", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "StartDateManuallySet", + "presentationType": "Date", + "label": "Start Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "DueDateManuallySet", + "presentationType": "Date", + "label": "Due Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "DurationManuallySet", + "presentationType": "Duration", + "label": "Duration", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Actual Start Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "manuallySetName": "ActualEndDateManuallySet", + "presentationType": "Date", + "label": "Actual End Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TrackStatus" + ], + "name": "TrackStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TrackStatusManuallySet", + "presentationType": "PickList", + "label": "Status", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StatusChangedOn", + "type": "Date", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Status Changed on", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Conflicts", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Conflicts Flags", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OnCriticalPath", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Other", + "label": "On Critical Path", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StartDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Start Date Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Due Date Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DurationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Duration Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TrackStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Status Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EarliestStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Earliest Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LatestStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Latest Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EarliestEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Earliest End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LatestEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Latest End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedProgress", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected Progress", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "SchedulingType" + ], + "name": "SchedulingType", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ConstraintsTypeManuallySet", + "presentationType": "PickList", + "label": "Constraint Type", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ImportedFrom" + ], + "name": "ImportedFrom", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Imported From", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Importance" + ], + "name": "Importance", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "includeDataFields": false + }, + "flags": [], + "presentationType": "PickList", + "label": "Importance", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Priority", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Priority", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": true, + "sortable": true, + "format": { + "percentCompleteDisplayFormat": "Detailed", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "PercentCompletedManuallySet", + "presentationType": "Percent", + "label": "% Complete", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompletedManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% Complete Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Manager", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Owner", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Charged Type Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ChildrenCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Direct Sub-items", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuccessorsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Successors", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PredecessorsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Predecessors", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllUserResourcesAndPlaceholdersCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of all Resources", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PostsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of V5 Posts", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ConstraintsTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Constraints Type Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Reportable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "ReportableManuallySet", + "presentationType": "Checkbox", + "label": "Reportable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ReportableManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Reportable Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ChildShortcutCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Sub Shortcut", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "Project", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "WorkPolicy" + ], + "name": "WorkPolicy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Work Policy", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CommitLevel" + ], + "name": "CommitLevel", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Commit Level", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportingStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Reporting start date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Actual Effort", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StartDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualCostManuallySet", + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DueDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedBudgetManuallySet", + "presentationType": "Currency", + "label": "Budgeted Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Cost Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budgeted Cost Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Time Tracking Effort", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedPrice", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Price", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentInvested", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Invested", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingBilling", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Billing", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Earned Value", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedRevenueManuallySet", + "presentationType": "Currency", + "label": "Expected Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "CPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualRevenueManuallySet", + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "SPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Expected Revenue Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Revenue Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Profitability", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Profitability", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "RevenueCurrencyType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "RevenueCurrencyTypeManuallySet", + "presentationType": "PickList", + "label": "Revenue Currency Type", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Revenue Currency Type Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "CostCurrencyType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "CostCurrencyTypeManuallySet", + "presentationType": "PickList", + "label": "Cost Currency Type", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CostCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Cost Currency Type Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Pending" + ], + "name": "Pending", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Pending", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "IssuesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Cases", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEndDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual End Date Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllowReportingOnSubItems", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "AllowReportingOnSubItemsManuallySet", + "presentationType": "Checkbox", + "label": "Allow Reporting On Sub Items", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllowReportingOnSubItemsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allow Reporting On Sub Items Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CommittedDate", + "type": "Date", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Committed Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourcesAndPlaceholdersCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Resources", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "BudgetedHoursManuallySet", + "presentationType": "Duration", + "label": "Budgeted Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Balance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "BudgetStatus" + ], + "name": "BudgetStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "BudgetStatusManuallySet", + "presentationType": "PickList", + "label": "Budget Status", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budget Status Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Balance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffortUpdatedFromTimesheets", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "ActualEffortUpdatedFromTimesheetsManuallySet", + "presentationType": "Checkbox", + "label": "Actual Effort Updated from Timesheets", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEffortUpdatedFromTimesheetsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Effort Updated from Timesheets Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "ParentProject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SfExternalId", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SfExternalName", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Internal ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OrderID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Order ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SKU", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "SKU", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Due Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "InternalStatus", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Internal Status", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Deliverable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Deliverable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DeliverableType", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Deliverable Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Executable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Other", + "label": "Executable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItem" + ], + "name": "Parent", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Amount", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ChargedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ChargedAmountManuallySet", + "presentationType": "Currency", + "label": "Charged Amount", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "TCPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "TotalEstimatedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Estimated Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ChargedType" + ], + "name": "Charged", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ChargedTypeManuallySet", + "presentationType": "PickList", + "label": "Charged", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedAmountManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Charged Amount Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EstimatedStartDate", + "type": "DateTime", + "filterable": false, + "sortable": false, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Estimated Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueEarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EV", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EstimatedEndDate", + "type": "DateTime", + "filterable": false, + "sortable": false, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Estimated End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "EstimatedDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Estimated Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RTCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RTCPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ReportableStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reportable Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CompletnessDefinition", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "% Completeness Uncertain", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ReportableEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reportable End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TaskReportingPolicy" + ], + "name": "TaskReportingPolicy", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TaskReportingPolicyManuallySet", + "presentationType": "PickList", + "label": "Leaf Tasks Progress Reporting Policy", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ConflictType" + ], + "name": "ConflictType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Conflicts", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TaskReportingPolicyManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Leaf Tasks Progress Reporting Policy Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FloatingTask", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "To Do List Item", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IndividualReporting", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Individual Completeness Using", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AggregatedStopwatchesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Aggregate Stopwatch Count", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CalculateCompletenessBasedOnEfforts", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "CalculateCompletenessBasedOnEffortsManuallySet", + "presentationType": "Checkbox", + "label": "Calculate %complete based on efforts", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "StopwatchAggregateState" + ], + "name": "ActiveStopwatch", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "includeDataFields": false + }, + "presentationType": "PickList", + "label": "Active Stopwatch", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CalculateCompletenessBasedOnEffortsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Calculate %complete based on efforts Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StopwatchesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "Stopwatches Count", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHoursManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Budgeted Work Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyEAC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "EAC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PendingTimeTrackingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyREAC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EAC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "CurrencyETC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyRETC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SetByLeveling", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Set by leveling", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Template" + ], + "name": "Template", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Template", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GeographicalRegion" + ], + "name": "GeographicalRegion", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Geographical Region", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ResourceUtilizationCategory" + ], + "name": "ResourceUtilizationCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ResourceUtilizationCategoryManuallySet", + "presentationType": "PickList", + "label": "Resource Utilization Category", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Countries" + ], + "name": "Country", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Country", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CountryState" + ], + "name": "StateProvince", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State/Province", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ResourceUtilizationCategoryManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resource Utilization Category Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ExpenseTypeManuallySet", + "presentationType": "PickList", + "label": "Expense Type", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost OPEX", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpenseTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Expense Type Manually Set", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ActualCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost OPEX", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLROpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Opex", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLRCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Capex", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FinancialStart", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Financial Start", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FinancialEnd", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Financial End", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FinancialOldStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Financial old start date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Cost Non-labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Revenue Non-labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Opex YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Opex YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual billable hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNonBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual non billable hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ResourceRateDate", + "type": "Date", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ResourceRateDateManuallySet", + "presentationType": "Date", + "label": "Resource Rate Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourceRateDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resource Rate Date Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastReplanningDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Replanning date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Non-labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYPlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UserResourcesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "# of User Resources", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllUserResourcesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "# of all User Resources", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ProjectCapexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Capex Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectOpexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Opex Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Agreed Date for Exchange rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Agreed Date for Exchange rate is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Funding", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "FundingManuallySet", + "presentationType": "Currency", + "label": "Funding", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Funding Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingGap", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Gap", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Allocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "AllocationManuallySet", + "presentationType": "Currency", + "label": "Allocation", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "AllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allocation Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SubAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "SubAllocationManuallySet", + "presentationType": "Currency", + "label": "Sub Allocation", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SubAllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Sub Allocation Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TargetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Target Margin", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TotalAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Unallocated", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unallocated", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UnusedAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unused Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingAvailable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Available", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor & Budget Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingRemaining", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Remaining", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor & Actual Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Contribution", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Contribution", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Planned Profitability %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LaborCostPercentComplete", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "% Complete Labor Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenueNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Planned Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Contract" + ], + "name": "Contract", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Contract", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ContractPurchaseOrder" + ], + "name": "ContractPurchaseOrder", + "type": "Entity", + "filterable": false, + "sortable": false, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Contract Purchase Order", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "TaskType" + ], + "name": "TaskType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Task Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Milestone" + ], + "name": "Milestone", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Milestone", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "Groups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupTaskLink", + "relatedTypeName": "Group", + "sourceFieldName": "Entity" + }, + { + "name": "AllImpacting", + "label": "Impacting and Sub Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemHierarchyLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Parent" + }, + { + "name": "Children", + "label": "Sub Items", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RealWorkItemHierarchyLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Parent" + }, + { + "name": "Shortcuts", + "label": "Shortcuts", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ShortcutLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Parent" + }, + { + "name": "Impacting", + "label": "Impacting", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ProgressImpactLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Parent" + }, + { + "name": "AllImpacted", + "label": "Impacted and Parents", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemHierarchyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Child" + }, + { + "name": "WhereUsedAsShortcut", + "label": "Shortcut in", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ShortcutLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Child" + }, + { + "name": "ImpactedBy", + "label": "Impacted By", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ProgressImpactLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Child" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "RelatedExpenses", + "label": "Aggregated Expenses", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Expense" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "ProjectCustomers", + "label": "Project Customers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Customer" + }, + { + "name": "TeamMembersAndPlaceholders", + "label": "Work Item Team Members", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "AttachedPosts", + "label": "V5 Posts", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Post", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "RelatedTimesheetEntries", + "label": "Time Entries", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Timesheet", + "sourceFieldName": "WorkItem" + }, + { + "name": "Expenses", + "label": "Expenses", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Expense", + "sourceFieldName": "WorkItem" + }, + { + "name": "OriginatedIssues", + "label": "Originated Cases", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "OriginatedFrom" + }, + { + "name": "Issues", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Case", + "sourceFieldName": "WorkItem" + }, + { + "name": "ResourcesAndPlaceholders", + "label": "Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Reviewers", + "label": "Reviewers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ReviewerLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Managers", + "label": "Managers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ManagerResourceLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "AllTeamMembersAndPlaceholders", + "label": "All Team Members And Placeholders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllManagers", + "label": "All Managers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllReviewers", + "label": "All Reviewers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllResourcesAndPlaceholders", + "label": "All Resources And Placeholders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "Successors", + "label": "Successors", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DependencyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "WorkItem" + }, + { + "name": "Predecessors", + "label": "Predecessors", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DependencyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "DependsOn" + }, + { + "name": "AllTeam", + "label": "Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "UsersOpenedStopwatches", + "label": "Active Stopwatch Users", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "Stopwatch", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicWorkItemLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "AllWorkItemsWithShortcuts", + "label": "All Work Items With Shortcuts", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "WorkItem" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "CustomizationProfilingData", + "label": "Customization Profiling Data", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "CustomizationProfilingData", + "sourceFieldName": "SourceObject" + }, + { + "name": "AdditionalObjectProperties", + "label": "Overview", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "AdditionalObjectProperties", + "sourceFieldName": "RelatedItem" + }, + { + "name": "RelatedIssues", + "label": "Issues", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Issue", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedRisks", + "label": "Risks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Risk", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedBugs", + "label": "Bugs", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Bug", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedRequests", + "label": "Requests", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "EnhancementRequest", + "sourceFieldName": "WorkItem" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "LoadOfUserMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "WorkItemVersion", + "sourceFieldName": "VersionSourceObject" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "LoadOfUser", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "StaffTimePhasedDataOfUserDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "ResourceEntity" + }, + { + "name": "StaffTimePhasedDataOfUserMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "ResourceEntity" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Targets", + "label": "Targets", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Target", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Objectives", + "label": "Objectives", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Objective", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Contributions", + "label": "Contributions", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Contribution", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "UserTeamMembers", + "label": "Work Item User Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllUserResources", + "label": "All User Resources", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "UserResources", + "label": "User Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "GenericUser", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllUserTeamMembers", + "label": "All User Team Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "DirectLaborResources", + "label": "Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "LaborResourceLinkDirect", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectNonLaborResources", + "label": "Non-Labor Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "NonLaborResourceLinkDirect", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectFixedPriceResources", + "label": "Work Item's direct Fixed Price Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "FixedPriceResourceLinkDirect", + "relatedTypeName": "FixedPriceResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "FinancialResources", + "label": "Financial Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLinkFinancial", + "relatedTypeName": "GenericResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectAssetResources", + "label": "Work Item's direct Asset Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "AssetResourceLinkDirect", + "relatedTypeName": "GenericAsset", + "sourceFieldName": "WorkItem" + } + ] + }, + { + "typeName": "PlanningComponent", + "label": "Planning Component", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1600, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1950, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Phase" + ], + "name": "Phase", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Phase", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "StartDateManuallySet", + "presentationType": "Date", + "label": "Start Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "DueDateManuallySet", + "presentationType": "Date", + "label": "Due Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "DurationManuallySet", + "presentationType": "Duration", + "label": "Duration", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Actual Start Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "manuallySetName": "ActualEndDateManuallySet", + "presentationType": "Date", + "label": "Actual End Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TrackStatus" + ], + "name": "TrackStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TrackStatusManuallySet", + "presentationType": "PickList", + "label": "Status", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StatusChangedOn", + "type": "Date", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Status Changed on", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Conflicts", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Conflicts Flags", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OnCriticalPath", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Other", + "label": "On Critical Path", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StartDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Start Date Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Due Date Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DurationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Duration Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TrackStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Status Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EarliestStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Earliest Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LatestStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Latest Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EarliestEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Earliest End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LatestEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Latest End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedProgress", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected Progress", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "SchedulingType" + ], + "name": "SchedulingType", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ConstraintsTypeManuallySet", + "presentationType": "PickList", + "label": "Constraint Type", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ImportedFrom" + ], + "name": "ImportedFrom", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Imported From", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Importance" + ], + "name": "Importance", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "includeDataFields": false + }, + "flags": [], + "presentationType": "PickList", + "label": "Importance", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Priority", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Priority", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": true, + "sortable": true, + "format": { + "percentCompleteDisplayFormat": "Detailed", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "PercentCompletedManuallySet", + "presentationType": "Percent", + "label": "% Complete", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompletedManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% Complete Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Manager", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Owner", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Charged Type Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ChildrenCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Direct Sub-items", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuccessorsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Successors", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PredecessorsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Predecessors", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllUserResourcesAndPlaceholdersCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of all Resources", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PostsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of V5 Posts", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ConstraintsTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Constraints Type Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Reportable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "ReportableManuallySet", + "presentationType": "Checkbox", + "label": "Reportable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ReportableManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Reportable Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ChildShortcutCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Sub Shortcut", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "Project", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "WorkPolicy" + ], + "name": "WorkPolicy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Work Policy", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CommitLevel" + ], + "name": "CommitLevel", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Commit Level", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportingStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Reporting start date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Actual Effort", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StartDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualCostManuallySet", + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DueDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedBudgetManuallySet", + "presentationType": "Currency", + "label": "Budgeted Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Cost Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budgeted Cost Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Time Tracking Effort", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedPrice", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Price", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentInvested", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Invested", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingBilling", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Billing", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Earned Value", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedRevenueManuallySet", + "presentationType": "Currency", + "label": "Expected Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "CPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualRevenueManuallySet", + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "SPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Expected Revenue Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Revenue Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Profitability", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Profitability", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "RevenueCurrencyType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "RevenueCurrencyTypeManuallySet", + "presentationType": "PickList", + "label": "Revenue Currency Type", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Revenue Currency Type Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "CostCurrencyType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "CostCurrencyTypeManuallySet", + "presentationType": "PickList", + "label": "Cost Currency Type", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CostCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Cost Currency Type Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Pending" + ], + "name": "Pending", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Pending", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "IssuesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Cases", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEndDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual End Date Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllowReportingOnSubItems", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "AllowReportingOnSubItemsManuallySet", + "presentationType": "Checkbox", + "label": "Allow Reporting On Sub Items", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllowReportingOnSubItemsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allow Reporting On Sub Items Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CommittedDate", + "type": "Date", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Committed Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourcesAndPlaceholdersCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Resources", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "BudgetedHoursManuallySet", + "presentationType": "Duration", + "label": "Budgeted Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Balance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "BudgetStatus" + ], + "name": "BudgetStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "BudgetStatusManuallySet", + "presentationType": "PickList", + "label": "Budget Status", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budget Status Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Balance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffortUpdatedFromTimesheets", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "ActualEffortUpdatedFromTimesheetsManuallySet", + "presentationType": "Checkbox", + "label": "Actual Effort Updated from Timesheets", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEffortUpdatedFromTimesheetsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Effort Updated from Timesheets Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "ParentProject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SfExternalId", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SfExternalName", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Internal ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OrderID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Order ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SKU", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "SKU", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Due Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "InternalStatus", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Internal Status", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Deliverable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Deliverable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DeliverableType", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Deliverable Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Executable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Other", + "label": "Executable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItem" + ], + "name": "Parent", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Amount", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ChargedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ChargedAmountManuallySet", + "presentationType": "Currency", + "label": "Charged Amount", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "TCPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "TotalEstimatedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Estimated Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ChargedType" + ], + "name": "Charged", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ChargedTypeManuallySet", + "presentationType": "PickList", + "label": "Charged", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedAmountManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Charged Amount Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EstimatedStartDate", + "type": "DateTime", + "filterable": false, + "sortable": false, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Estimated Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueEarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EV", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EstimatedEndDate", + "type": "DateTime", + "filterable": false, + "sortable": false, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Estimated End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "EstimatedDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Estimated Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RTCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RTCPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ReportableStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reportable Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CompletnessDefinition", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "% Completeness Uncertain", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ReportableEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reportable End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TaskReportingPolicy" + ], + "name": "TaskReportingPolicy", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TaskReportingPolicyManuallySet", + "presentationType": "PickList", + "label": "Leaf Tasks Progress Reporting Policy", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ConflictType" + ], + "name": "ConflictType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Conflicts", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TaskReportingPolicyManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Leaf Tasks Progress Reporting Policy Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FloatingTask", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "To Do List Item", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IndividualReporting", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Individual Completeness Using", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AggregatedStopwatchesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Aggregate Stopwatch Count", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CalculateCompletenessBasedOnEfforts", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "CalculateCompletenessBasedOnEffortsManuallySet", + "presentationType": "Checkbox", + "label": "Calculate %complete based on efforts", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "StopwatchAggregateState" + ], + "name": "ActiveStopwatch", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "includeDataFields": false + }, + "presentationType": "PickList", + "label": "Active Stopwatch", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CalculateCompletenessBasedOnEffortsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Calculate %complete based on efforts Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StopwatchesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "Stopwatches Count", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHoursManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Budgeted Work Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyEAC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "EAC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PendingTimeTrackingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyREAC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EAC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "CurrencyETC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyRETC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SetByLeveling", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Set by leveling", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Template" + ], + "name": "Template", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Template", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GeographicalRegion" + ], + "name": "GeographicalRegion", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Geographical Region", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ResourceUtilizationCategory" + ], + "name": "ResourceUtilizationCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ResourceUtilizationCategoryManuallySet", + "presentationType": "PickList", + "label": "Resource Utilization Category", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Countries" + ], + "name": "Country", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Country", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CountryState" + ], + "name": "StateProvince", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State/Province", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ResourceUtilizationCategoryManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resource Utilization Category Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ExpenseTypeManuallySet", + "presentationType": "PickList", + "label": "Expense Type", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost OPEX", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpenseTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Expense Type Manually Set", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ActualCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost OPEX", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLROpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Opex", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLRCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Capex", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FinancialStart", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Financial Start", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FinancialEnd", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Financial End", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FinancialOldStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Financial old start date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Cost Non-labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Revenue Non-labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Opex YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Opex YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual billable hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNonBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual non billable hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ResourceRateDate", + "type": "Date", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ResourceRateDateManuallySet", + "presentationType": "Date", + "label": "Resource Rate Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourceRateDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resource Rate Date Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastReplanningDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Replanning date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Non-labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYPlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UserResourcesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "# of User Resources", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllUserResourcesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "# of all User Resources", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ProjectCapexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Capex Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectOpexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Opex Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Agreed Date for Exchange rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Agreed Date for Exchange rate is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Funding", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "FundingManuallySet", + "presentationType": "Currency", + "label": "Funding", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Funding Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingGap", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Gap", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Allocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "AllocationManuallySet", + "presentationType": "Currency", + "label": "Allocation", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "AllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allocation Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SubAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "SubAllocationManuallySet", + "presentationType": "Currency", + "label": "Sub Allocation", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SubAllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Sub Allocation Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TargetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Target Margin", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TotalAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Unallocated", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unallocated", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UnusedAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unused Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingAvailable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Available", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor & Budget Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingRemaining", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Remaining", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor & Actual Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Contribution", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Contribution", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Planned Profitability %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LaborCostPercentComplete", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "% Complete Labor Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenueNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Planned Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Contract" + ], + "name": "Contract", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Contract", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ContractPurchaseOrder" + ], + "name": "ContractPurchaseOrder", + "type": "Entity", + "filterable": false, + "sortable": false, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Contract Purchase Order", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "AllImpacted", + "label": "Impacted and Parents", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemHierarchyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Child" + }, + { + "name": "WhereUsedAsShortcut", + "label": "Shortcut in", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ShortcutLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Child" + }, + { + "name": "ImpactedBy", + "label": "Impacted By", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ProgressImpactLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Child" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "RelatedExpenses", + "label": "Aggregated Expenses", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Expense" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "ProjectCustomers", + "label": "Project Customers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Customer" + }, + { + "name": "TeamMembersAndPlaceholders", + "label": "Work Item Team Members", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "AttachedPosts", + "label": "V5 Posts", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Post", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "RelatedTimesheetEntries", + "label": "Time Entries", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Timesheet", + "sourceFieldName": "WorkItem" + }, + { + "name": "Expenses", + "label": "Expenses", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Expense", + "sourceFieldName": "WorkItem" + }, + { + "name": "OriginatedIssues", + "label": "Originated Cases", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "OriginatedFrom" + }, + { + "name": "Issues", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Case", + "sourceFieldName": "WorkItem" + }, + { + "name": "ResourcesAndPlaceholders", + "label": "Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Reviewers", + "label": "Reviewers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ReviewerLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Managers", + "label": "Managers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ManagerResourceLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "AllTeamMembersAndPlaceholders", + "label": "All Team Members And Placeholders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllManagers", + "label": "All Managers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllReviewers", + "label": "All Reviewers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllResourcesAndPlaceholders", + "label": "All Resources And Placeholders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "Successors", + "label": "Successors", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DependencyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "WorkItem" + }, + { + "name": "Predecessors", + "label": "Predecessors", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DependencyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "DependsOn" + }, + { + "name": "AllTeam", + "label": "Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "UsersOpenedStopwatches", + "label": "Active Stopwatch Users", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "Stopwatch", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicWorkItemLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "AllWorkItemsWithShortcuts", + "label": "All Work Items With Shortcuts", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "WorkItem" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "CustomizationProfilingData", + "label": "Customization Profiling Data", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "CustomizationProfilingData", + "sourceFieldName": "SourceObject" + }, + { + "name": "AdditionalObjectProperties", + "label": "Overview", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "AdditionalObjectProperties", + "sourceFieldName": "RelatedItem" + }, + { + "name": "RelatedIssues", + "label": "Issues", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Issue", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedRisks", + "label": "Risks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Risk", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedBugs", + "label": "Bugs", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Bug", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedRequests", + "label": "Requests", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "EnhancementRequest", + "sourceFieldName": "WorkItem" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "LoadOfUserMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "WorkItemVersion", + "sourceFieldName": "VersionSourceObject" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "LoadOfUser", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "StaffTimePhasedDataOfUserDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "ResourceEntity" + }, + { + "name": "StaffTimePhasedDataOfUserMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "ResourceEntity" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Targets", + "label": "Targets", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Target", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Objectives", + "label": "Objectives", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Objective", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Contributions", + "label": "Contributions", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Contribution", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "UserTeamMembers", + "label": "Work Item User Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllUserResources", + "label": "All User Resources", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "UserResources", + "label": "User Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "GenericUser", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllUserTeamMembers", + "label": "All User Team Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllImpacting", + "label": "Impacting and Sub Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemHierarchyLink", + "relatedTypeName": "PlanningComponent", + "sourceFieldName": "Parent" + }, + { + "name": "Tasks", + "label": "Tasks", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "GenericTask", + "sourceFieldName": "Milestone" + }, + { + "name": "Children", + "label": "Sub Items", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RealWorkItemHierarchyLink", + "relatedTypeName": "GenericTask", + "sourceFieldName": "Parent" + }, + { + "name": "Shortcuts", + "label": "Shortcuts", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ShortcutLink", + "relatedTypeName": "PlanningComponent", + "sourceFieldName": "Parent" + }, + { + "name": "Impacting", + "label": "Impacting", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ProgressImpactLink", + "relatedTypeName": "PlanningComponent", + "sourceFieldName": "Parent" + }, + { + "name": "AggregatedAssetResources", + "label": "Work Item's aggregated Asset Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "AssetResourceLinkAggregated", + "relatedTypeName": "GenericAsset", + "sourceFieldName": "WorkItem" + }, + { + "name": "AggregatedLaborResources", + "label": "Work Item's aggregated Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "LaborResourceLinkAggregated", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectFixedPriceResources", + "label": "Work Item's direct Fixed Price Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "FixedPriceResourceLinkDirect", + "relatedTypeName": "FixedPriceResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "AggregatedFixedPriceResources", + "label": "Work Item's aggregated Fixed Price Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "FixedPriceResourceLinkAggregated", + "relatedTypeName": "FixedPriceResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "FinancialResources", + "label": "Financial Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLinkFinancial", + "relatedTypeName": "GenericResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectNonLaborResources", + "label": "Non-Labor Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "NonLaborResourceLinkDirect", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "AggregatedNonLaborResources", + "label": "Work Item's aggregated Non-Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "NonLaborResourceLinkAggregated", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "Groups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupTaskLink", + "relatedTypeName": "Group", + "sourceFieldName": "Entity" + }, + { + "name": "DirectLaborResources", + "label": "Work Item's direct Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "LaborResourceLinkDirect", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectAssetResources", + "label": "Work Item's direct Asset Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "AssetResourceLinkDirect", + "relatedTypeName": "GenericAsset", + "sourceFieldName": "WorkItem" + } + ] + }, + { + "typeName": "Project", + "label": "Project", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1600, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1950, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4012", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Draft", + "Name": "Draft" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Phase" + ], + "name": "Phase", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Phase", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "StartDateManuallySet", + "presentationType": "Date", + "label": "Start Date", + "defaultValue": "2026-06-02T12:00:00.0000000Z", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "DueDateManuallySet", + "presentationType": "Date", + "label": "Due Date", + "defaultValue": "2026-06-02T21:00:00.0000000Z", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "DurationManuallySet", + "presentationType": "Duration", + "label": "Duration", + "defaultValue": { + "unit": "Days", + "value": 1 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Actual Start Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "manuallySetName": "ActualEndDateManuallySet", + "presentationType": "Date", + "label": "Actual End Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TrackStatus" + ], + "name": "TrackStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TrackStatusManuallySet", + "presentationType": "PickList", + "label": "Status", + "defaultValue": { + "id": "/TrackStatus/Not Active", + "Name": "Not Active" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StatusChangedOn", + "type": "Date", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Status Changed on", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Conflicts", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Conflicts Flags", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OnCriticalPath", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Other", + "label": "On Critical Path", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StartDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Start Date Manually Set", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Due Date Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DurationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Duration Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TrackStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Status Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EarliestStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Earliest Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LatestStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Latest Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EarliestEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Earliest End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LatestEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Latest End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedProgress", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected Progress", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "SchedulingType" + ], + "name": "SchedulingType", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ConstraintsTypeManuallySet", + "presentationType": "PickList", + "label": "Constraint Type", + "defaultValue": { + "id": "/SchedulingType/As Soon As Possible", + "Name": "As Soon As Possible" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ImportedFrom" + ], + "name": "ImportedFrom", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Imported From", + "defaultValue": { + "id": "/ImportedFrom/None", + "Name": "None" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Importance" + ], + "name": "Importance", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "includeDataFields": false + }, + "flags": [], + "presentationType": "PickList", + "label": "Importance", + "defaultValue": { + "id": "/Importance/Normal", + "Name": "Normal" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Priority", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Priority", + "defaultValue": 500, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": true, + "sortable": true, + "format": { + "percentCompleteDisplayFormat": "Detailed", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "PercentCompletedManuallySet", + "presentationType": "Percent", + "label": "% Complete", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompletedManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% Complete Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Manager", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Charged Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ChildrenCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Direct Sub-items", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuccessorsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Successors", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PredecessorsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Predecessors", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllUserResourcesAndPlaceholdersCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of all Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PostsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of V5 Posts", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ConstraintsTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Constraints Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Reportable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "ReportableManuallySet", + "presentationType": "Checkbox", + "label": "Reportable", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ReportableManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Reportable Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ChildShortcutCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Sub Shortcut", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "Project", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "WorkPolicy" + ], + "name": "WorkPolicy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Work Policy", + "defaultValue": { + "id": "/WorkPolicy/Fixed Duration", + "Name": "Fixed Duration" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CommitLevel" + ], + "name": "CommitLevel", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Commit Level", + "defaultValue": { + "id": "/CommitLevel/No Commit", + "Name": "No Commit" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportingStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Reporting start date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StartDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualCostManuallySet", + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DueDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedBudgetManuallySet", + "presentationType": "Currency", + "label": "Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Cost Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budgeted Cost Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Time Tracking Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedPrice", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Price", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentInvested", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Invested", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingBilling", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Billing", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Earned Value", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedRevenueManuallySet", + "presentationType": "Currency", + "label": "Expected Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "CPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualRevenueManuallySet", + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "SPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Expected Revenue Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Revenue Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Profitability", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Profitability", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "RevenueCurrencyType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "RevenueCurrencyTypeManuallySet", + "presentationType": "PickList", + "label": "Revenue Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Revenue Currency Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "CostCurrencyType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "CostCurrencyTypeManuallySet", + "presentationType": "PickList", + "label": "Cost Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CostCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Cost Currency Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Pending" + ], + "name": "Pending", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Pending", + "defaultValue": { + "id": "/Pending/None", + "Name": "None" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "IssuesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Cases", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEndDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual End Date Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllowReportingOnSubItems", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "AllowReportingOnSubItemsManuallySet", + "presentationType": "Checkbox", + "label": "Allow Reporting On Sub Items", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllowReportingOnSubItemsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allow Reporting On Sub Items Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CommittedDate", + "type": "Date", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Committed Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourcesAndPlaceholdersCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "BudgetedHoursManuallySet", + "presentationType": "Duration", + "label": "Budgeted Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Balance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "BudgetStatus" + ], + "name": "BudgetStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "BudgetStatusManuallySet", + "presentationType": "PickList", + "label": "Budget Status", + "defaultValue": { + "id": "/BudgetStatus/Not Active", + "Name": "Not Active" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budget Status Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Balance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffortUpdatedFromTimesheets", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "ActualEffortUpdatedFromTimesheetsManuallySet", + "presentationType": "Checkbox", + "label": "Actual Effort Updated from Timesheets", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEffortUpdatedFromTimesheetsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Effort Updated from Timesheets Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "ParentProject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SfExternalId", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SfExternalName", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Internal ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OrderID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Order ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SKU", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "SKU", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Due Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "InternalStatus", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Internal Status", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Deliverable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Deliverable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DeliverableType", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Deliverable Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Executable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Other", + "label": "Executable", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "Parent", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Amount", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ChargedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ChargedAmountManuallySet", + "presentationType": "Currency", + "label": "Charged Amount", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "TCPI", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "TotalEstimatedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Estimated Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ChargedType" + ], + "name": "Charged", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ChargedTypeManuallySet", + "presentationType": "PickList", + "label": "Charged", + "defaultValue": { + "id": "/ChargedType/Not charged", + "Name": "Not charged" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedAmountManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Charged Amount Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EstimatedStartDate", + "type": "DateTime", + "filterable": false, + "sortable": false, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Estimated Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueEarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EV", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EstimatedEndDate", + "type": "DateTime", + "filterable": false, + "sortable": false, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Estimated End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "EstimatedDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Estimated Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RTCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RTCPI", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ReportableStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reportable Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CompletnessDefinition", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "% Completeness Uncertain", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ReportableEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reportable End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TaskReportingPolicy" + ], + "name": "TaskReportingPolicy", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TaskReportingPolicyManuallySet", + "presentationType": "PickList", + "label": "Leaf Tasks Progress Reporting Policy", + "defaultValue": { + "id": "/TaskReportingPolicy/Shared", + "Name": "Shared" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ConflictType" + ], + "name": "ConflictType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Conflicts", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TaskReportingPolicyManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Leaf Tasks Progress Reporting Policy Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FloatingTask", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "To Do List Item", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IndividualReporting", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Individual Completeness Using", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AggregatedStopwatchesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Aggregate Stopwatch Count", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CalculateCompletenessBasedOnEfforts", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "CalculateCompletenessBasedOnEffortsManuallySet", + "presentationType": "Checkbox", + "label": "Calculate %complete based on efforts", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "StopwatchAggregateState" + ], + "name": "ActiveStopwatch", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "includeDataFields": false + }, + "presentationType": "PickList", + "label": "Active Stopwatch", + "defaultValue": { + "id": "/StopwatchAggregateState/None", + "Name": "None" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CalculateCompletenessBasedOnEffortsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Calculate %complete based on efforts Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StopwatchesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "Stopwatches Count", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHoursManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Budgeted Work Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyEAC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "EAC", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PendingTimeTrackingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyREAC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EAC", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "CurrencyETC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.51.0-08F48ACE2712CF4BE1BA74B8DFB9FE6689A0ACE9/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyRETC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SetByLeveling", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Set by leveling", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Template" + ], + "name": "Template", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Template", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GeographicalRegion" + ], + "name": "GeographicalRegion", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Geographical Region", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ResourceUtilizationCategory" + ], + "name": "ResourceUtilizationCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ResourceUtilizationCategoryManuallySet", + "presentationType": "PickList", + "label": "Resource Utilization Category", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Countries" + ], + "name": "Country", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Country", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CountryState" + ], + "name": "StateProvince", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State/Province", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ResourceUtilizationCategoryManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resource Utilization Category Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ExpenseTypeManuallySet", + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost OPEX", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpenseTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Expense Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ActualCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost OPEX", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLROpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLRCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FinancialStart", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Financial Start", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FinancialEnd", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Financial End", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FinancialOldStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Financial old start date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Cost Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Revenue Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Opex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Opex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual billable hours", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNonBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual non billable hours", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ResourceRateDate", + "type": "Date", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ResourceRateDateManuallySet", + "presentationType": "Date", + "label": "Resource Rate Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourceRateDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resource Rate Date Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastReplanningDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Replanning date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYPlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UserResourcesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "# of User Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllUserResourcesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "# of all User Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ProjectCapexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Capex Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectOpexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Opex Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Agreed Date for Exchange rate", + "defaultValue": "2026-06-02T00:00:00.0000000", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Agreed Date for Exchange rate is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Funding", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "FundingManuallySet", + "presentationType": "Currency", + "label": "Funding", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Funding Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingGap", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Gap", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Allocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "AllocationManuallySet", + "presentationType": "Currency", + "label": "Allocation", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "AllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allocation Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SubAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "SubAllocationManuallySet", + "presentationType": "Currency", + "label": "Sub Allocation", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SubAllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Sub Allocation Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TargetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Target Margin", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TotalAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Unallocated", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unallocated", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UnusedAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unused Allocation", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingAvailable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Available", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor & Budget Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingRemaining", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Remaining", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor & Actual Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Contribution", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Contribution", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Planned Profitability %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LaborCostPercentComplete", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "% Complete Labor Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenueNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Planned Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Contract" + ], + "name": "Contract", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Contract", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ContractPurchaseOrder" + ], + "name": "ContractPurchaseOrder", + "type": "Entity", + "filterable": false, + "sortable": false, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Contract Purchase Order", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ProjectType" + ], + "name": "ProjectType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Project Type", + "defaultValue": { + "id": "/ProjectType/Development", + "Name": "Development" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ProjectTagging", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Project Tagging", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "ProjectManager", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Project Manager", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RollupFinancialAndEffortDataFromShortcut", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "RollupFinancialDataFromShortcutManuallySet", + "presentationType": "Checkbox", + "label": "Rollup Financial and Effort Data from shortcut", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RollupFinancialDataFromShortcutManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Rollup Financial Data from shortcut manually set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RollupProgressAndDatesFromShortcut", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "RollupProgressAndDatesFromShortcutManuallySet", + "presentationType": "Checkbox", + "label": "Rollup Progress and Dates from shortcut", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RollupProgressAndDatesFromShortcutManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Rollup Progress and Dates from shortcut manually set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "ProjectSponsor", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project Sponsor", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "IgnoreResourceCalendars", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "IgnoreResourceCalendarsManuallySet", + "presentationType": "Checkbox", + "label": "Ignore resource calendars", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IgnoreResourceCalendarsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Ignore resource calendars manually set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "HoldingNotes", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Holding Notes", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ClosingNotes", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Closing Notes", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastProjectCalculation", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Project Calculation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsPortfolio", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Portfolio", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ReportingPeriodPickup" + ], + "name": "ProgressUpdateFrequency", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ProgressUpdateFrequencyManuallySet", + "presentationType": "PickList", + "label": "Progress update frequency", + "defaultValue": { + "id": "/ReportingPeriodPickup/System Settings", + "Name": "System Settings" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ProgressUpdateFrequencyManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Progress update frequency manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "LaborBudgetPickup" + ], + "name": "LaborBudget", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Labor Budget", + "defaultValue": { + "id": "/LaborBudgetPickup/Task Assignment", + "Name": "Task Assignment" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Justification", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Justification", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BusinessAlignment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Business Alignment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedSavings", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Planned Savings", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedBusinessValue", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Expected Business Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "GoalsAchieved", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Goals achieved", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedROI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected ROI", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "BusinessImpact" + ], + "name": "BusinessImpact", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Business Impact", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Score", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Total Score", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ProjectGoals", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Project Goals", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ProjectSize" + ], + "name": "ProjectSize", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Project Size", + "defaultValue": { + "id": "/ProjectSize/Small", + "Name": "Small" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "OverallSummary", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Overall Summary", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ScheduleSummary", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Schedule Summary", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetSummary", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Budget Summary", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AdditionalComments", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Additional Comments", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Risks", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1024, + "presentationType": "TextArea", + "label": "Potential Risks", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Mitigation", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1024, + "presentationType": "TextArea", + "label": "Mitigation", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "RisksRate" + ], + "name": "RisksRate", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Risks Rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "RiskImpact" + ], + "name": "RisksImpact", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Risks Impact", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RisksTotalScore", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Risks Total Score", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "Benefit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "BenefitManuallySet", + "presentationType": "Currency", + "label": "Benefit", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BenefitManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Benefit Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Alignment", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Alignment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "InvestmentType" + ], + "name": "InvestmentType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Investment Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Required", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Required", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetVariancePercent", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Budget Variance %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Program" + ], + "name": "Program", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Program", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Document" + ], + "name": "DefaultIntegrationPath", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Default Integration Path", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastFPCalculationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Date", + "label": "Last Financial Planning fields calculation date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "RateCard" + ], + "name": "RateCard", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Rate Card", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ProjectBillingType" + ], + "name": "BillingType", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "BillingTypeManuallySet", + "presentationType": "PickList", + "label": "Billing Type", + "defaultValue": { + "id": "/ProjectBillingType/Mixed", + "Name": "Mixed" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BillingTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billing Type manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "PermissionInheritanceForExternalUsers" + ], + "name": "PermissionInheritanceForExternalUsers", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Permission Inheritance for External Users", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "NLRExchangeRateDateOptionSet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Non Labor Budget & Forecast Exchange Rate manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrentFinancialPeriodStart", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrentFinancialPeriodStartSet", + "presentationType": "Date", + "label": "Start Date of current fiscal month", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrentFinancialPeriodStartSet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Start Date of current fiscal month manually set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "UpdateForecastDefault" + ], + "name": "UpdateForecastDefault", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "UpdateForecastDefaultManuallySet", + "presentationType": "PickList", + "label": "Update Forecast default", + "defaultValue": { + "id": "/UpdateForecastDefault/Use future planned work only - Keep manually-set assignments", + "Name": "Use future planned work only - Keep manually-set assignments" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "UpdateForecastDefaultManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Update Forecast default manually set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ForecastUsingDateEffectiveRates", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "ForecastUsingDateEffectiveRatesSet", + "presentationType": "Checkbox", + "label": "Forecast using Date Effective Rates", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ForecastUsingDateEffectiveRatesSet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Forecast using Date Effective Rates manually set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrentFinancialPeriodStartUpdated", + "type": "Date", + "filterable": false, + "sortable": true, + "manuallySetName": "CurrentFinancialPeriodStartUpdatedSet", + "presentationType": "Date", + "label": "Start Date of current fiscal month updated", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrentFinancialPeriodStartUpdatedSet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Start Date of current fiscal month updated manually set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "SentimentStatus" + ], + "name": "SentimentStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Sentiment Status", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SentimentScore", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Sentiment Score", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SentimentCalculated", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Sentiment Calculated", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SentimentChanged", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Sentiment Changed", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SentimentLatest", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Sentiment Latest", + "defaultValue": true, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CustomerCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Customers", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TimeApproval" + ], + "name": "TimeApproval", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Time Approval", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CalculateFinancials", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Calculate Financials", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Budget", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "AllImpacting", + "label": "Impacting and Sub Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemHierarchyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Parent" + }, + { + "name": "AllImpacted", + "label": "Impacted and Parents", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemHierarchyLink", + "relatedTypeName": "GenericProject", + "sourceFieldName": "Child" + }, + { + "name": "AllTeam", + "label": "Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CustomerLink", + "relatedTypeName": "Customer", + "sourceFieldName": "Entity" + }, + { + "name": "ExpenseSheets", + "label": "Expense Sheets", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "Project" + }, + { + "name": "Children", + "label": "Sub Items", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RealWorkItemHierarchyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Parent" + }, + { + "name": "Shortcuts", + "label": "Shortcuts", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ShortcutLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Parent" + }, + { + "name": "Impacting", + "label": "Impacting", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ProgressImpactLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Parent" + }, + { + "name": "ImpactedBy", + "label": "Impacted By", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ProgressImpactLink", + "relatedTypeName": "GenericProject", + "sourceFieldName": "Child" + }, + { + "name": "AllRisks", + "label": "Risks (Aggregated)", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Risk" + }, + { + "name": "AllIssues", + "label": "Issues (Aggregated)", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Issue" + }, + { + "name": "AllRequests", + "label": "Requests (Aggregated)", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "EnhancementRequest" + }, + { + "name": "AllBugs", + "label": "Bugs (Aggregated)", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Bug" + }, + { + "name": "AllCases", + "label": "Cases (Aggregated)", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Case" + }, + { + "name": "Timesheets", + "label": "Aggregated Time Entries", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "Project" + }, + { + "name": "DirectLaborResources", + "label": "Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "LaborResourceLinkDirect", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "WhereUsedAsShortcut", + "label": "Shortcut in", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ShortcutLink", + "relatedTypeName": "Project", + "sourceFieldName": "Child" + }, + { + "name": "Versions", + "label": "Versions", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Versions", + "sourceFieldName": "Project" + }, + { + "name": "AllFiles", + "label": "Files (Aggregated)", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Document" + }, + { + "name": "FinancialResources", + "label": "Financial Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLinkFinancial", + "relatedTypeName": "GenericResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Portfolios", + "label": "Portfolios", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "PortfolioProjectLink", + "relatedTypeName": "Portfolio", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectAssetResources", + "label": "Work Item's direct Asset Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "AssetResourceLinkDirect", + "relatedTypeName": "GenericAsset", + "sourceFieldName": "WorkItem" + }, + { + "name": "AggregatedLaborResources", + "label": "Aggregated Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "LaborResourceLinkAggregated", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllWorkItems", + "label": "All Work Items", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "WorkItem" + }, + { + "name": "WorkItems", + "label": "Work Items", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "PlanningComponent", + "sourceFieldName": "Project" + }, + { + "name": "TargetedIssues", + "label": "Targeted Cases", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "PlannedFor" + }, + { + "name": "JobTitles", + "label": "Job Titles", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "JobTitleRateLink", + "relatedTypeName": "JobTitle", + "sourceFieldName": "WorkItem" + }, + { + "name": "Groups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupProjectLink", + "relatedTypeName": "Group", + "sourceFieldName": "Entity" + }, + { + "name": "DirectNonLaborResources", + "label": "Non-Labor Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "NonLaborResourceLinkDirect", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "AggregatedNonLaborResources", + "label": "Aggregated Non-Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "NonLaborResourceLinkAggregated", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectFixedPriceResources", + "label": "Work Item's direct Fixed Price Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "FixedPriceResourceLinkDirect", + "relatedTypeName": "FixedPriceResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "AggregatedFixedPriceResources", + "label": "Work Item's aggregated Fixed Price Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "FixedPriceResourceLinkAggregated", + "relatedTypeName": "FixedPriceResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "RequestedResourceEntities", + "label": "Staffing Requests (Resource)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceRequest", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Project" + }, + { + "name": "AggregatedAssetResources", + "label": "Work Item's aggregated Asset Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "AssetResourceLinkAggregated", + "relatedTypeName": "GenericAsset", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "RelatedExpenses", + "label": "Aggregated Expenses", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Expense" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "ProjectCustomers", + "label": "Project Customers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Customer" + }, + { + "name": "TeamMembersAndPlaceholders", + "label": "Work Item Team Members", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "AttachedPosts", + "label": "V5 Posts", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Post", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "RelatedTimesheetEntries", + "label": "Time Entries", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Timesheet", + "sourceFieldName": "WorkItem" + }, + { + "name": "Expenses", + "label": "Expenses", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Expense", + "sourceFieldName": "WorkItem" + }, + { + "name": "OriginatedIssues", + "label": "Originated Cases", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "OriginatedFrom" + }, + { + "name": "Issues", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Case", + "sourceFieldName": "WorkItem" + }, + { + "name": "ResourcesAndPlaceholders", + "label": "Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Reviewers", + "label": "Reviewers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ReviewerLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Managers", + "label": "Managers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ManagerResourceLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "AllTeamMembersAndPlaceholders", + "label": "All Team Members And Placeholders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllManagers", + "label": "All Managers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllReviewers", + "label": "All Reviewers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllResourcesAndPlaceholders", + "label": "All Resources And Placeholders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "Successors", + "label": "Successors", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DependencyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "WorkItem" + }, + { + "name": "Predecessors", + "label": "Predecessors", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DependencyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "DependsOn" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "UsersOpenedStopwatches", + "label": "Active Stopwatch Users", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "Stopwatch", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicWorkItemLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "AllWorkItemsWithShortcuts", + "label": "All Work Items With Shortcuts", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "WorkItem" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "CustomizationProfilingData", + "label": "Customization Profiling Data", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "CustomizationProfilingData", + "sourceFieldName": "SourceObject" + }, + { + "name": "AdditionalObjectProperties", + "label": "Overview", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "AdditionalObjectProperties", + "sourceFieldName": "RelatedItem" + }, + { + "name": "RelatedIssues", + "label": "Issues", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Issue", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedRisks", + "label": "Risks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Risk", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedBugs", + "label": "Bugs", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Bug", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedRequests", + "label": "Requests", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "EnhancementRequest", + "sourceFieldName": "WorkItem" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "LoadOfUserMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "WorkItemVersion", + "sourceFieldName": "VersionSourceObject" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "LoadOfUser", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "StaffTimePhasedDataOfUserDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "ResourceEntity" + }, + { + "name": "StaffTimePhasedDataOfUserMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "ResourceEntity" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Targets", + "label": "Targets", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Target", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Objectives", + "label": "Objectives", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Objective", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Contributions", + "label": "Contributions", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Contribution", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "UserTeamMembers", + "label": "Work Item User Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllUserResources", + "label": "All User Resources", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "UserResources", + "label": "User Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "GenericUser", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllUserTeamMembers", + "label": "All User Team Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + } + ] + }, + { + "typeName": "Program", + "label": "Program", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 1600, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 1950, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4013", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Draft", + "Name": "Draft" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Phase" + ], + "name": "Phase", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Phase", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "StartDateManuallySet", + "presentationType": "Date", + "label": "Start Date", + "defaultValue": "2026-06-02T12:00:00.0000000Z", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "DueDateManuallySet", + "presentationType": "Date", + "label": "Due Date", + "defaultValue": "2026-06-02T21:00:00.0000000Z", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "DurationManuallySet", + "presentationType": "Duration", + "label": "Duration", + "defaultValue": { + "unit": "Days", + "value": 1 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualStartDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Actual Start Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEndDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "manuallySetName": "ActualEndDateManuallySet", + "presentationType": "Date", + "label": "Actual End Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TrackStatus" + ], + "name": "TrackStatus", + "type": "Entity", + "filterable": false, + "sortable": true, + "manuallySetName": "TrackStatusManuallySet", + "presentationType": "PickList", + "label": "Status", + "defaultValue": { + "id": "/TrackStatus/Not Active", + "Name": "Not Active" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StatusChangedOn", + "type": "Date", + "filterable": false, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Status Changed on", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Conflicts", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Conflicts Flags", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "StartDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Start Date Manually Set", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Due Date Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DurationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Duration Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TrackStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Status Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EarliestStartDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Earliest Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LatestStartDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Latest Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EarliestEndDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Earliest End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LatestEndDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Latest End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedProgress", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected Progress", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "SchedulingType" + ], + "name": "SchedulingType", + "type": "Entity", + "filterable": false, + "sortable": true, + "manuallySetName": "ConstraintsTypeManuallySet", + "presentationType": "PickList", + "label": "Constraint Type", + "defaultValue": { + "id": "/SchedulingType/As Soon As Possible", + "Name": "As Soon As Possible" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ImportedFrom" + ], + "name": "ImportedFrom", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Imported From", + "defaultValue": { + "id": "/ImportedFrom/None", + "Name": "None" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Importance" + ], + "name": "Importance", + "type": "Entity", + "filterable": false, + "sortable": true, + "format": { + "includeDataFields": false + }, + "flags": [], + "presentationType": "PickList", + "label": "Importance", + "defaultValue": { + "id": "/Importance/Normal", + "Name": "Normal" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Priority", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Priority", + "defaultValue": 500, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": false, + "sortable": true, + "format": { + "percentCompleteDisplayFormat": "Detailed", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "PercentCompletedManuallySet", + "presentationType": "Percent", + "label": "% Complete", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompletedManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% Complete Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Manager", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Charged Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ChildrenCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Direct Sub-items", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuccessorsCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Successors", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PredecessorsCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Predecessors", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllUserResourcesAndPlaceholdersCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of all Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PostsCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of V5 Posts", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ConstraintsTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Constraints Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ReportableManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Reportable Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Program" + ], + "name": "Project", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportingStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Reporting start date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": false, + "sortable": true, + "flags": [], + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualDuration", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StartDateVariance", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "manuallySetName": "ActualCostManuallySet", + "presentationType": "Currency", + "label": "Actual Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DueDateVariance", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedBudgetManuallySet", + "presentationType": "Currency", + "label": "Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DurationVariance", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Cost Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budgeted Cost Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Time Tracking Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedCost", + "type": "Money", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedPrice", + "type": "Money", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Price", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentInvested", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Invested", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingBilling", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Billing", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EarnedValue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Earned Value", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedRevenueManuallySet", + "presentationType": "Currency", + "label": "Expected Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CPI", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "CPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "manuallySetName": "ActualRevenueManuallySet", + "presentationType": "Currency", + "label": "Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SPI", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "SPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Expected Revenue Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Revenue Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Profitability", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentProfitability", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Profitability", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedExpenses", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedExpenses", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualExpenses", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualExpenses", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedExpenses", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedExpenses", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBilledExpenses", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedBilledExpenses", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBilledExpenses", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualBilledExpenses", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedBilledExpenses", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedBilledExpenses", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Billed Expenses", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "RevenueCurrencyType", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "manuallySetName": "RevenueCurrencyTypeManuallySet", + "presentationType": "PickList", + "label": "Revenue Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Revenue Currency Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "CostCurrencyType", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "manuallySetName": "CostCurrencyTypeManuallySet", + "presentationType": "PickList", + "label": "Cost Currency Type", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CostCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Cost Currency Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IssuesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Cases", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEndDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual End Date Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllowReportingOnSubItems", + "type": "Boolean", + "filterable": false, + "sortable": true, + "manuallySetName": "AllowReportingOnSubItemsManuallySet", + "presentationType": "Checkbox", + "label": "Allow Reporting On Sub Items", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllowReportingOnSubItemsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allow Reporting On Sub Items Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CommittedDate", + "type": "Date", + "filterable": false, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Committed Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourcesAndPlaceholdersCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHours", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "BudgetedHoursManuallySet", + "presentationType": "Duration", + "label": "Budgeted Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostBalance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Balance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "BudgetStatus" + ], + "name": "BudgetStatus", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "manuallySetName": "BudgetStatusManuallySet", + "presentationType": "PickList", + "label": "Budget Status", + "defaultValue": { + "id": "/BudgetStatus/Not Active", + "Name": "Not Active" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budget Status Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueBalance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Balance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffortUpdatedFromTimesheets", + "type": "Boolean", + "filterable": false, + "sortable": true, + "manuallySetName": "ActualEffortUpdatedFromTimesheetsManuallySet", + "presentationType": "Checkbox", + "label": "Actual Effort Updated from Timesheets", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEffortUpdatedFromTimesheetsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Effort Updated from Timesheets Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SfExternalId", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SfExternalName", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalId", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Internal ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SKU", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "SKU", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDateVariance", + "type": "Duration", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Due Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDateVariance", + "type": "Duration", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDuration", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDurationVariance", + "type": "Duration", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWorkVariance", + "type": "Duration", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCostsVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenueVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "InternalStatus", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Internal Status", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedAmount", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Amount", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ChargedAmount", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "manuallySetName": "ChargedAmountManuallySet", + "presentationType": "Currency", + "label": "Charged Amount", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TCPI", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "TCPI", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "TotalEstimatedCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Estimated Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ChargedType" + ], + "name": "Charged", + "type": "Entity", + "filterable": false, + "sortable": true, + "manuallySetName": "ChargedTypeManuallySet", + "presentationType": "PickList", + "label": "Charged", + "defaultValue": { + "id": "/ChargedType/Not charged", + "Name": "Not charged" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedAmountManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Charged Amount Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EstimatedStartDate", + "type": "DateTime", + "filterable": false, + "sortable": false, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Estimated Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueEarnedValue", + "type": "Money", + "filterable": false, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EV", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EstimatedEndDate", + "type": "DateTime", + "filterable": false, + "sortable": false, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Estimated End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RPI", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "RPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "EstimatedDuration", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Estimated Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RTCPI", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "RTCPI", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ReportableStartDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Reportable Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CompletnessDefinition", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "% Completeness Uncertain", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ReportableEndDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Reportable End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TaskReportingPolicy" + ], + "name": "TaskReportingPolicy", + "type": "Entity", + "filterable": false, + "sortable": true, + "manuallySetName": "TaskReportingPolicyManuallySet", + "presentationType": "PickList", + "label": "Leaf Tasks Progress Reporting Policy", + "defaultValue": { + "id": "/TaskReportingPolicy/Shared", + "Name": "Shared" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TaskReportingPolicyManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Leaf Tasks Progress Reporting Policy Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FloatingTask", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "To Do List Item", + "defaultValue": false, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CalculateCompletenessBasedOnEfforts", + "type": "Boolean", + "filterable": false, + "sortable": true, + "manuallySetName": "CalculateCompletenessBasedOnEffortsManuallySet", + "presentationType": "Checkbox", + "label": "Calculate %complete based on efforts", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CalculateCompletenessBasedOnEffortsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Calculate %complete based on efforts Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StopwatchesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "Stopwatches Count", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHoursManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Budgeted Work Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyEAC", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "EAC", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PendingTimeTrackingEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyREAC", + "type": "Money", + "filterable": false, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EAC", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "CurrencyETC", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.167956.0-C20720416D6E5870EB2BECB11E43CBAE41A86E42/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyRETC", + "type": "Money", + "filterable": false, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SetByLeveling", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Set by leveling", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Template" + ], + "name": "Template", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Template", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GeographicalRegion" + ], + "name": "GeographicalRegion", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Geographical Region", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ResourceUtilizationCategory" + ], + "name": "ResourceUtilizationCategory", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "manuallySetName": "ResourceUtilizationCategoryManuallySet", + "presentationType": "PickList", + "label": "Resource Utilization Category", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Countries" + ], + "name": "Country", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Country", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CountryState" + ], + "name": "StateProvince", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State/Province", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ResourceUtilizationCategoryManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resource Utilization Category Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": false, + "sortable": true, + "manuallySetName": "ExpenseTypeManuallySet", + "presentationType": "PickList", + "label": "Expense Type", + "defaultValue": { + "id": "/ExpenseType/Opex", + "Name": "Opex" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetCostOPEX", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost OPEX", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpenseTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Expense Type Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostCAPEX", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ActualCostOPEX", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost OPEX", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostCAPEX", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLROpex", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLRCapex", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FinancialStart", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Financial Start", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FinancialEnd", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Financial End", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FinancialOldStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Financial old start date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastCostNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Cost Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastRevenueNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Revenue Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexActualYTD", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexActualYTD", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Opex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexBudgetYTD", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexBudgetYTD", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Opex YTD", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostCapex", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostOpex", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastatCompletionCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectForecastatCompletionCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBillableHours", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Actual billable hours", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNonBillableHours", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Actual non billable hours", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ResourceRateDate", + "type": "Date", + "filterable": false, + "sortable": true, + "flags": [], + "manuallySetName": "ResourceRateDateManuallySet", + "presentationType": "Date", + "label": "Resource Rate Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourceRateDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resource Rate Date Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastReplanningDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Replanning date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostCapex", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Capex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostOpex", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Opex", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Non-labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedRevenueLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenueLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYPlannedProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Planned Profit", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UserResourcesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "# of User Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllUserResourcesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "# of all User Resources", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ProjectCapexForecastatCompletionCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Capex Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectOpexForecastatCompletionCost", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Opex Forecast at Completion Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": false, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Agreed Date for Exchange rate", + "defaultValue": "2026-06-02T00:00:00.0000000", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Agreed Date for Exchange rate is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Funding", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "manuallySetName": "FundingManuallySet", + "presentationType": "Currency", + "label": "Funding", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Funding Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingGap", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Gap", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Allocation", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "manuallySetName": "AllocationManuallySet", + "presentationType": "Currency", + "label": "Allocation", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "AllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allocation Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfitability", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SubAllocation", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "manuallySetName": "SubAllocationManuallySet", + "presentationType": "Currency", + "label": "Sub Allocation", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfitability", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SubAllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Sub Allocation Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TargetMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Target Margin", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TotalAllocation", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRCosts", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Unallocated", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unallocated", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UnusedAllocation", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unused Allocation", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingAvailable", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Available", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor & Budget Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRCosts", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingRemaining", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Remaining", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor & Actual Non Billable 3rd Party Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Contribution", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Contribution", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Planned Profitability %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LaborCostPercentComplete", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "% Complete Labor Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenueNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Planned Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenueNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue Non-Labor", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "ProjectManager", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Project Manager", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RollupFinancialAndEffortDataFromShortcut", + "type": "Boolean", + "filterable": false, + "sortable": true, + "manuallySetName": "RollupFinancialDataFromShortcutManuallySet", + "presentationType": "Checkbox", + "label": "Rollup Financial and Effort Data from shortcut", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RollupFinancialDataFromShortcutManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Rollup Financial Data from shortcut manually set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RollupProgressAndDatesFromShortcut", + "type": "Boolean", + "filterable": false, + "sortable": true, + "manuallySetName": "RollupProgressAndDatesFromShortcutManuallySet", + "presentationType": "Checkbox", + "label": "Rollup Progress and Dates from shortcut", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RollupProgressAndDatesFromShortcutManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Rollup Progress and Dates from shortcut manually set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IgnoreResourceCalendars", + "type": "Boolean", + "filterable": false, + "sortable": true, + "manuallySetName": "IgnoreResourceCalendarsManuallySet", + "presentationType": "Checkbox", + "label": "Ignore resource calendars", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IgnoreResourceCalendarsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Ignore resource calendars manually set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "HoldingNotes", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Holding Notes", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ClosingNotes", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Closing Notes", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastProjectCalculation", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Project Calculation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ProgressUpdateFrequencyManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Progress update frequency manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "LaborBudgetPickup" + ], + "name": "LaborBudget", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Labor Budget", + "defaultValue": { + "id": "/LaborBudgetPickup/Task Assignment", + "Name": "Task Assignment" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Justification", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Justification", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BusinessAlignment", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Business Alignment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedSavings", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Planned Savings", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedBusinessValue", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Expected Business Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedROI", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected ROI", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProgramGoals", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Program Goals", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OverallSummary", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Overall Summary", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ScheduleSummary", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Schedule Summary", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetSummary", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Budget Summary", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AdditionalComments", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Additional Comments", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Risks", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 1024, + "presentationType": "TextArea", + "label": "Potential Risks", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "RisksRate" + ], + "name": "RisksRate", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Risks Rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "RiskImpact" + ], + "name": "RisksImpact", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Risks Impact", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RisksTotalScore", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Risks Total Score", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "Benefit", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "manuallySetName": "BenefitManuallySet", + "presentationType": "Currency", + "label": "Benefit", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BenefitManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Benefit Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "InvestmentType" + ], + "name": "InvestmentType", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Investment Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetVariancePercent", + "type": "Double", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Budget Variance %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Program" + ], + "name": "Program", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Program", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Document" + ], + "name": "DefaultIntegrationPath", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Default Integration Path", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastFPCalculationDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Date", + "label": "Last Financial Planning fields calculation date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "RateCard" + ], + "name": "RateCard", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Rate Card", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ProjectBillingType" + ], + "name": "BillingType", + "type": "Entity", + "filterable": false, + "sortable": true, + "manuallySetName": "BillingTypeManuallySet", + "presentationType": "PickList", + "label": "Billing Type", + "defaultValue": { + "id": "/ProjectBillingType/Mixed", + "Name": "Mixed" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BillingTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billing Type manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "PermissionInheritanceForExternalUsers" + ], + "name": "PermissionInheritanceForExternalUsers", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Permission Inheritance for External Users", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "NLRExchangeRateDateOptionSet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Non Labor Budget & Forecast Exchange Rate manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrentFinancialPeriodStart", + "type": "Date", + "filterable": false, + "sortable": true, + "manuallySetName": "CurrentFinancialPeriodStartSet", + "presentationType": "Date", + "label": "Start Date of current fiscal month", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrentFinancialPeriodStartSet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Start Date of current fiscal month manually set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "UpdateForecastDefault" + ], + "name": "UpdateForecastDefault", + "type": "Entity", + "filterable": false, + "sortable": true, + "manuallySetName": "UpdateForecastDefaultManuallySet", + "presentationType": "PickList", + "label": "Update Forecast default", + "defaultValue": { + "id": "/UpdateForecastDefault/Use future planned work only - Keep manually-set assignments", + "Name": "Use future planned work only - Keep manually-set assignments" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "UpdateForecastDefaultManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Update Forecast default manually set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ForecastUsingDateEffectiveRates", + "type": "Boolean", + "filterable": false, + "sortable": true, + "manuallySetName": "ForecastUsingDateEffectiveRatesSet", + "presentationType": "Checkbox", + "label": "Forecast using Date Effective Rates", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ForecastUsingDateEffectiveRatesSet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Forecast using Date Effective Rates manually set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrentFinancialPeriodStartUpdated", + "type": "Date", + "filterable": false, + "sortable": true, + "manuallySetName": "CurrentFinancialPeriodStartUpdatedSet", + "presentationType": "Date", + "label": "Start Date of current fiscal month updated", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrentFinancialPeriodStartUpdatedSet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Start Date of current fiscal month updated manually set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "SentimentStatus" + ], + "name": "SentimentStatus", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Sentiment Status", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SentimentScore", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Sentiment Score", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SentimentCalculated", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Sentiment Calculated", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SentimentChanged", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Sentiment Changed", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SentimentLatest", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Sentiment Latest", + "defaultValue": true, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingBudget", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Budget", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetVariance", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Variance", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "ProgramManager", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Program Manager", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "AllImpacting", + "label": "Impacting and Sub Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemHierarchyLink", + "relatedTypeName": "Project", + "sourceFieldName": "Parent" + }, + { + "name": "Children", + "label": "Sub Items", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RealWorkItemHierarchyLink", + "relatedTypeName": "Project", + "sourceFieldName": "Parent" + }, + { + "name": "Impacting", + "label": "Impacting", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ProgressImpactLink", + "relatedTypeName": "Project", + "sourceFieldName": "Parent" + }, + { + "name": "AllCases", + "label": "Cases (Aggregated)", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Case" + }, + { + "name": "AllRisks", + "label": "Risks (Aggregated)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Risk" + }, + { + "name": "AllIssues", + "label": "Issues (Aggregated)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Issue" + }, + { + "name": "AllRequests", + "label": "Requests (Aggregated)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "EnhancementRequest" + }, + { + "name": "AllBugs", + "label": "Bugs (Aggregated)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Bug" + }, + { + "name": "AllFiles", + "label": "Files (Aggregated)", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Document" + }, + { + "name": "Portfolios", + "label": "Portfolios", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "PortfolioProgramLink", + "relatedTypeName": "Portfolio", + "sourceFieldName": "WorkItem" + }, + { + "name": "AggregatedLaborResources", + "label": "Aggregated Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "LaborResourceLinkAggregated", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllWorkItems", + "label": "All Work Items", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "WorkItem" + }, + { + "name": "WorkItems", + "label": "Work Items", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "PlanningComponent", + "sourceFieldName": "Project" + }, + { + "name": "TargetedIssues", + "label": "Targeted Cases", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "PlannedFor" + }, + { + "name": "JobTitles", + "label": "Job Titles", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "JobTitleRateLink", + "relatedTypeName": "JobTitle", + "sourceFieldName": "WorkItem" + }, + { + "name": "Groups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupProjectLink", + "relatedTypeName": "Group", + "sourceFieldName": "Entity" + }, + { + "name": "DirectNonLaborResources", + "label": "Non-Labor Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "NonLaborResourceLinkDirect", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "AggregatedNonLaborResources", + "label": "Aggregated Non-Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "NonLaborResourceLinkAggregated", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectFixedPriceResources", + "label": "Work Item's direct Fixed Price Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "FixedPriceResourceLinkDirect", + "relatedTypeName": "FixedPriceResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "AggregatedFixedPriceResources", + "label": "Work Item's aggregated Fixed Price Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "FixedPriceResourceLinkAggregated", + "relatedTypeName": "FixedPriceResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "RequestedResourceEntities", + "label": "Staffing Requests (Resource)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceRequest", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Project" + }, + { + "name": "AggregatedAssetResources", + "label": "Work Item's aggregated Asset Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "AssetResourceLinkAggregated", + "relatedTypeName": "GenericAsset", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "RelatedExpenses", + "label": "Aggregated Expenses", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Expense" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "ProjectCustomers", + "label": "Project Customers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Customer" + }, + { + "name": "TeamMembersAndPlaceholders", + "label": "Work Item Team Members", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "AttachedPosts", + "label": "V5 Posts", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Post", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "RelatedTimesheetEntries", + "label": "Time Entries", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Timesheet", + "sourceFieldName": "WorkItem" + }, + { + "name": "Expenses", + "label": "Expenses", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Expense", + "sourceFieldName": "WorkItem" + }, + { + "name": "OriginatedIssues", + "label": "Originated Cases", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "OriginatedFrom" + }, + { + "name": "Issues", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Case", + "sourceFieldName": "WorkItem" + }, + { + "name": "ResourcesAndPlaceholders", + "label": "Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Reviewers", + "label": "Reviewers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ReviewerLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Managers", + "label": "Managers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ManagerResourceLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "AllTeamMembersAndPlaceholders", + "label": "All Team Members And Placeholders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllManagers", + "label": "All Managers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllReviewers", + "label": "All Reviewers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllResourcesAndPlaceholders", + "label": "All Resources And Placeholders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "Successors", + "label": "Successors", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DependencyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "WorkItem" + }, + { + "name": "Predecessors", + "label": "Predecessors", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DependencyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "DependsOn" + }, + { + "name": "AllTeam", + "label": "Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "UsersOpenedStopwatches", + "label": "Active Stopwatch Users", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "Stopwatch", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicWorkItemLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "AllWorkItemsWithShortcuts", + "label": "All Work Items With Shortcuts", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "WorkItem" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "CustomizationProfilingData", + "label": "Customization Profiling Data", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "CustomizationProfilingData", + "sourceFieldName": "SourceObject" + }, + { + "name": "AdditionalObjectProperties", + "label": "Overview", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "AdditionalObjectProperties", + "sourceFieldName": "RelatedItem" + }, + { + "name": "RelatedIssues", + "label": "Issues", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Issue", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedRisks", + "label": "Risks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Risk", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedBugs", + "label": "Bugs", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Bug", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedRequests", + "label": "Requests", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "EnhancementRequest", + "sourceFieldName": "WorkItem" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "LoadOfUserMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "WorkItemVersion", + "sourceFieldName": "VersionSourceObject" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "LoadOfUser", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "StaffTimePhasedDataOfUserDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "ResourceEntity" + }, + { + "name": "StaffTimePhasedDataOfUserMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "ResourceEntity" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Targets", + "label": "Targets", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Target", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Objectives", + "label": "Objectives", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Objective", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Contributions", + "label": "Contributions", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Contribution", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "UserTeamMembers", + "label": "Work Item User Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllUserResources", + "label": "All User Resources", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "UserResources", + "label": "User Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "GenericUser", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllUserTeamMembers", + "label": "All User Team Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + } + ] + }, + { + "typeName": "GenericProject", + "label": "Project or Program", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1600, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1950, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Phase" + ], + "name": "Phase", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Phase", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "StartDateManuallySet", + "presentationType": "Date", + "label": "Start Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "DueDateManuallySet", + "presentationType": "Date", + "label": "Due Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "DurationManuallySet", + "presentationType": "Duration", + "label": "Duration", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Actual Start Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "manuallySetName": "ActualEndDateManuallySet", + "presentationType": "Date", + "label": "Actual End Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TrackStatus" + ], + "name": "TrackStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TrackStatusManuallySet", + "presentationType": "PickList", + "label": "Status", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StatusChangedOn", + "type": "Date", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Status Changed on", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Conflicts", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Conflicts Flags", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OnCriticalPath", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Other", + "label": "On Critical Path", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StartDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Start Date Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Due Date Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DurationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Duration Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TrackStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Status Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EarliestStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Earliest Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LatestStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Latest Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EarliestEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Earliest End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LatestEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Latest End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedProgress", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected Progress", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "SchedulingType" + ], + "name": "SchedulingType", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ConstraintsTypeManuallySet", + "presentationType": "PickList", + "label": "Constraint Type", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ImportedFrom" + ], + "name": "ImportedFrom", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Imported From", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Importance" + ], + "name": "Importance", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "includeDataFields": false + }, + "flags": [], + "presentationType": "PickList", + "label": "Importance", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Priority", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Priority", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": true, + "sortable": true, + "format": { + "percentCompleteDisplayFormat": "Detailed", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "PercentCompletedManuallySet", + "presentationType": "Percent", + "label": "% Complete", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompletedManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% Complete Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Manager", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Owner", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Charged Type Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ChildrenCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Direct Sub-items", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuccessorsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Successors", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PredecessorsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Predecessors", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllUserResourcesAndPlaceholdersCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of all Resources", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PostsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of V5 Posts", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ConstraintsTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Constraints Type Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Reportable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "ReportableManuallySet", + "presentationType": "Checkbox", + "label": "Reportable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ReportableManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Reportable Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ChildShortcutCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Sub Shortcut", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "Project", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "WorkPolicy" + ], + "name": "WorkPolicy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Work Policy", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CommitLevel" + ], + "name": "CommitLevel", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Commit Level", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportingStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Reporting start date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Actual Effort", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StartDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualCostManuallySet", + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DueDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedBudgetManuallySet", + "presentationType": "Currency", + "label": "Budgeted Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Cost Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budgeted Cost Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Time Tracking Effort", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedPrice", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Price", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentInvested", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Invested", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingBilling", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Billing", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Earned Value", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedRevenueManuallySet", + "presentationType": "Currency", + "label": "Expected Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "CPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualRevenueManuallySet", + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "SPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Expected Revenue Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Revenue Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Profitability", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Profitability", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "RevenueCurrencyType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "RevenueCurrencyTypeManuallySet", + "presentationType": "PickList", + "label": "Revenue Currency Type", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Revenue Currency Type Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "CostCurrencyType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "CostCurrencyTypeManuallySet", + "presentationType": "PickList", + "label": "Cost Currency Type", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CostCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Cost Currency Type Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Pending" + ], + "name": "Pending", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Pending", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "IssuesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Cases", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEndDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual End Date Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllowReportingOnSubItems", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "AllowReportingOnSubItemsManuallySet", + "presentationType": "Checkbox", + "label": "Allow Reporting On Sub Items", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllowReportingOnSubItemsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allow Reporting On Sub Items Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CommittedDate", + "type": "Date", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Committed Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourcesAndPlaceholdersCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Resources", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "BudgetedHoursManuallySet", + "presentationType": "Duration", + "label": "Budgeted Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Balance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "BudgetStatus" + ], + "name": "BudgetStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "BudgetStatusManuallySet", + "presentationType": "PickList", + "label": "Budget Status", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budget Status Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Balance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffortUpdatedFromTimesheets", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "ActualEffortUpdatedFromTimesheetsManuallySet", + "presentationType": "Checkbox", + "label": "Actual Effort Updated from Timesheets", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEffortUpdatedFromTimesheetsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Effort Updated from Timesheets Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "ParentProject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SfExternalId", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SfExternalName", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Internal ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OrderID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Order ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SKU", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "SKU", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Due Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "InternalStatus", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Internal Status", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Deliverable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Deliverable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DeliverableType", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Deliverable Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Executable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Other", + "label": "Executable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "Parent", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Amount", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ChargedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ChargedAmountManuallySet", + "presentationType": "Currency", + "label": "Charged Amount", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "TCPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "TotalEstimatedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Estimated Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ChargedType" + ], + "name": "Charged", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ChargedTypeManuallySet", + "presentationType": "PickList", + "label": "Charged", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedAmountManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Charged Amount Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EstimatedStartDate", + "type": "DateTime", + "filterable": false, + "sortable": false, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Estimated Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueEarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EV", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EstimatedEndDate", + "type": "DateTime", + "filterable": false, + "sortable": false, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Estimated End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "EstimatedDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Estimated Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RTCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RTCPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ReportableStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reportable Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CompletnessDefinition", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "% Completeness Uncertain", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ReportableEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reportable End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TaskReportingPolicy" + ], + "name": "TaskReportingPolicy", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TaskReportingPolicyManuallySet", + "presentationType": "PickList", + "label": "Leaf Tasks Progress Reporting Policy", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ConflictType" + ], + "name": "ConflictType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Conflicts", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TaskReportingPolicyManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Leaf Tasks Progress Reporting Policy Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FloatingTask", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "To Do List Item", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IndividualReporting", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Individual Completeness Using", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AggregatedStopwatchesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Aggregate Stopwatch Count", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CalculateCompletenessBasedOnEfforts", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "CalculateCompletenessBasedOnEffortsManuallySet", + "presentationType": "Checkbox", + "label": "Calculate %complete based on efforts", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "StopwatchAggregateState" + ], + "name": "ActiveStopwatch", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "includeDataFields": false + }, + "presentationType": "PickList", + "label": "Active Stopwatch", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CalculateCompletenessBasedOnEffortsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Calculate %complete based on efforts Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StopwatchesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "Stopwatches Count", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHoursManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Budgeted Work Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyEAC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "EAC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PendingTimeTrackingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyREAC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EAC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "CurrencyETC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyRETC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SetByLeveling", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Set by leveling", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Template" + ], + "name": "Template", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Template", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GeographicalRegion" + ], + "name": "GeographicalRegion", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Geographical Region", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ResourceUtilizationCategory" + ], + "name": "ResourceUtilizationCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ResourceUtilizationCategoryManuallySet", + "presentationType": "PickList", + "label": "Resource Utilization Category", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Countries" + ], + "name": "Country", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Country", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CountryState" + ], + "name": "StateProvince", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State/Province", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ResourceUtilizationCategoryManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resource Utilization Category Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ExpenseTypeManuallySet", + "presentationType": "PickList", + "label": "Expense Type", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost OPEX", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpenseTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Expense Type Manually Set", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ActualCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost OPEX", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLROpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Opex", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLRCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Capex", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FinancialStart", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Financial Start", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FinancialEnd", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Financial End", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FinancialOldStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Financial old start date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Cost Non-labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Revenue Non-labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Opex YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Opex YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual billable hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNonBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual non billable hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ResourceRateDate", + "type": "Date", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ResourceRateDateManuallySet", + "presentationType": "Date", + "label": "Resource Rate Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourceRateDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resource Rate Date Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastReplanningDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Replanning date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Non-labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYPlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UserResourcesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "# of User Resources", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllUserResourcesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "# of all User Resources", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ProjectCapexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Capex Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectOpexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Opex Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Agreed Date for Exchange rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Agreed Date for Exchange rate is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Funding", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "FundingManuallySet", + "presentationType": "Currency", + "label": "Funding", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Funding Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingGap", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Gap", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Allocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "AllocationManuallySet", + "presentationType": "Currency", + "label": "Allocation", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "AllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allocation Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SubAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "SubAllocationManuallySet", + "presentationType": "Currency", + "label": "Sub Allocation", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SubAllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Sub Allocation Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TargetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Target Margin", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TotalAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Unallocated", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unallocated", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UnusedAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unused Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingAvailable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Available", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor & Budget Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingRemaining", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Remaining", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor & Actual Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Contribution", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Contribution", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Planned Profitability %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LaborCostPercentComplete", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "% Complete Labor Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenueNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Planned Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Contract" + ], + "name": "Contract", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Contract", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ContractPurchaseOrder" + ], + "name": "ContractPurchaseOrder", + "type": "Entity", + "filterable": false, + "sortable": false, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Contract Purchase Order", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ProjectType" + ], + "name": "ProjectType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Project Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ProjectTagging", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Project Tagging", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "ProjectManager", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Project Manager", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RollupFinancialAndEffortDataFromShortcut", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "RollupFinancialDataFromShortcutManuallySet", + "presentationType": "Checkbox", + "label": "Rollup Financial and Effort Data from shortcut", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RollupFinancialDataFromShortcutManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Rollup Financial Data from shortcut manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RollupProgressAndDatesFromShortcut", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "RollupProgressAndDatesFromShortcutManuallySet", + "presentationType": "Checkbox", + "label": "Rollup Progress and Dates from shortcut", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RollupProgressAndDatesFromShortcutManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Rollup Progress and Dates from shortcut manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "ProjectSponsor", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project Sponsor", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "IgnoreResourceCalendars", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "IgnoreResourceCalendarsManuallySet", + "presentationType": "Checkbox", + "label": "Ignore resource calendars", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IgnoreResourceCalendarsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Ignore resource calendars manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "HoldingNotes", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Holding Notes", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ClosingNotes", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Closing Notes", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastProjectCalculation", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Project Calculation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsPortfolio", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Portfolio", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ReportingPeriodPickup" + ], + "name": "ProgressUpdateFrequency", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ProgressUpdateFrequencyManuallySet", + "presentationType": "PickList", + "label": "Progress update frequency", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ProgressUpdateFrequencyManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Progress update frequency manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "LaborBudgetPickup" + ], + "name": "LaborBudget", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Labor Budget", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Justification", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Justification", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BusinessAlignment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Business Alignment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedSavings", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Planned Savings", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedBusinessValue", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Expected Business Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "GoalsAchieved", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Goals achieved", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedROI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected ROI", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "BusinessImpact" + ], + "name": "BusinessImpact", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Business Impact", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Score", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Total Score", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ProjectGoals", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Project Goals", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ProjectSize" + ], + "name": "ProjectSize", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Project Size", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "OverallSummary", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Overall Summary", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ScheduleSummary", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Schedule Summary", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetSummary", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Budget Summary", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AdditionalComments", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Additional Comments", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Risks", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1024, + "presentationType": "TextArea", + "label": "Potential Risks", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Mitigation", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1024, + "presentationType": "TextArea", + "label": "Mitigation", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "RisksRate" + ], + "name": "RisksRate", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Risks Rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "RiskImpact" + ], + "name": "RisksImpact", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Risks Impact", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RisksTotalScore", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Risks Total Score", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "Benefit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "BenefitManuallySet", + "presentationType": "Currency", + "label": "Benefit", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BenefitManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Benefit Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Alignment", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Alignment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "InvestmentType" + ], + "name": "InvestmentType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Investment Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Required", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Required", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetVariancePercent", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Budget Variance %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Program" + ], + "name": "Program", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Program", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Document" + ], + "name": "DefaultIntegrationPath", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Default Integration Path", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastFPCalculationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Date", + "label": "Last Financial Planning fields calculation date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "RateCard" + ], + "name": "RateCard", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Rate Card", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ProjectBillingType" + ], + "name": "BillingType", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "BillingTypeManuallySet", + "presentationType": "PickList", + "label": "Billing Type", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BillingTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billing Type manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "PermissionInheritanceForExternalUsers" + ], + "name": "PermissionInheritanceForExternalUsers", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Permission Inheritance for External Users", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "NLRExchangeRateDateOptionSet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Non Labor Budget & Forecast Exchange Rate manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrentFinancialPeriodStart", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrentFinancialPeriodStartSet", + "presentationType": "Date", + "label": "Start Date of current fiscal month", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrentFinancialPeriodStartSet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Start Date of current fiscal month manually set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "UpdateForecastDefault" + ], + "name": "UpdateForecastDefault", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "UpdateForecastDefaultManuallySet", + "presentationType": "PickList", + "label": "Update Forecast default", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "UpdateForecastDefaultManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Update Forecast default manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ForecastUsingDateEffectiveRates", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "ForecastUsingDateEffectiveRatesSet", + "presentationType": "Checkbox", + "label": "Forecast using Date Effective Rates", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ForecastUsingDateEffectiveRatesSet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Forecast using Date Effective Rates manually set", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrentFinancialPeriodStartUpdated", + "type": "Date", + "filterable": false, + "sortable": true, + "manuallySetName": "CurrentFinancialPeriodStartUpdatedSet", + "presentationType": "Date", + "label": "Start Date of current fiscal month updated", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrentFinancialPeriodStartUpdatedSet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Start Date of current fiscal month updated manually set", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "SentimentStatus" + ], + "name": "SentimentStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Sentiment Status", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SentimentScore", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Sentiment Score", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SentimentCalculated", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Sentiment Calculated", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SentimentChanged", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Sentiment Changed", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SentimentLatest", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Sentiment Latest", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Budget", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "AggregatedLaborResources", + "label": "Aggregated Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "LaborResourceLinkAggregated", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllWorkItems", + "label": "All Work Items", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "WorkItem" + }, + { + "name": "WorkItems", + "label": "Work Items", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "PlanningComponent", + "sourceFieldName": "Project" + }, + { + "name": "TargetedIssues", + "label": "Targeted Cases", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "PlannedFor" + }, + { + "name": "JobTitles", + "label": "Job Titles", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "JobTitleRateLink", + "relatedTypeName": "JobTitle", + "sourceFieldName": "WorkItem" + }, + { + "name": "Groups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupProjectLink", + "relatedTypeName": "Group", + "sourceFieldName": "Entity" + }, + { + "name": "DirectNonLaborResources", + "label": "Non-Labor Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "NonLaborResourceLinkDirect", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "AggregatedNonLaborResources", + "label": "Aggregated Non-Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "NonLaborResourceLinkAggregated", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectFixedPriceResources", + "label": "Work Item's direct Fixed Price Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "FixedPriceResourceLinkDirect", + "relatedTypeName": "FixedPriceResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "AggregatedFixedPriceResources", + "label": "Work Item's aggregated Fixed Price Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "FixedPriceResourceLinkAggregated", + "relatedTypeName": "FixedPriceResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "RequestedResourceEntities", + "label": "Staffing Requests (Resource)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceRequest", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Project" + }, + { + "name": "AggregatedAssetResources", + "label": "Work Item's aggregated Asset Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "AssetResourceLinkAggregated", + "relatedTypeName": "GenericAsset", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "RelatedExpenses", + "label": "Aggregated Expenses", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Expense" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "ProjectCustomers", + "label": "Project Customers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Customer" + }, + { + "name": "TeamMembersAndPlaceholders", + "label": "Work Item Team Members", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "AttachedPosts", + "label": "V5 Posts", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Post", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "RelatedTimesheetEntries", + "label": "Time Entries", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Timesheet", + "sourceFieldName": "WorkItem" + }, + { + "name": "Expenses", + "label": "Expenses", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Expense", + "sourceFieldName": "WorkItem" + }, + { + "name": "OriginatedIssues", + "label": "Originated Cases", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "OriginatedFrom" + }, + { + "name": "Issues", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Case", + "sourceFieldName": "WorkItem" + }, + { + "name": "ResourcesAndPlaceholders", + "label": "Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Reviewers", + "label": "Reviewers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ReviewerLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Managers", + "label": "Managers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ManagerResourceLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "AllTeamMembersAndPlaceholders", + "label": "All Team Members And Placeholders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllManagers", + "label": "All Managers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllReviewers", + "label": "All Reviewers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllResourcesAndPlaceholders", + "label": "All Resources And Placeholders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "Successors", + "label": "Successors", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DependencyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "WorkItem" + }, + { + "name": "Predecessors", + "label": "Predecessors", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DependencyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "DependsOn" + }, + { + "name": "AllTeam", + "label": "Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "UsersOpenedStopwatches", + "label": "Active Stopwatch Users", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "Stopwatch", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicWorkItemLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "AllWorkItemsWithShortcuts", + "label": "All Work Items With Shortcuts", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "WorkItem" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "CustomizationProfilingData", + "label": "Customization Profiling Data", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "CustomizationProfilingData", + "sourceFieldName": "SourceObject" + }, + { + "name": "AdditionalObjectProperties", + "label": "Overview", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "AdditionalObjectProperties", + "sourceFieldName": "RelatedItem" + }, + { + "name": "RelatedIssues", + "label": "Issues", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Issue", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedRisks", + "label": "Risks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Risk", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedBugs", + "label": "Bugs", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Bug", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedRequests", + "label": "Requests", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "EnhancementRequest", + "sourceFieldName": "WorkItem" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "LoadOfUserMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "WorkItemVersion", + "sourceFieldName": "VersionSourceObject" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "LoadOfUser", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "StaffTimePhasedDataOfUserDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "ResourceEntity" + }, + { + "name": "StaffTimePhasedDataOfUserMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "ResourceEntity" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Targets", + "label": "Targets", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Target", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Objectives", + "label": "Objectives", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Objective", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Contributions", + "label": "Contributions", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Contribution", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "UserTeamMembers", + "label": "Work Item User Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllUserResources", + "label": "All User Resources", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "UserResources", + "label": "User Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "GenericUser", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllUserTeamMembers", + "label": "All User Team Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllImpacting", + "label": "Impacting and Sub Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemHierarchyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Parent" + }, + { + "name": "AllImpacted", + "label": "Impacted and Parents", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemHierarchyLink", + "relatedTypeName": "GenericProject", + "sourceFieldName": "Child" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CustomerLink", + "relatedTypeName": "Customer", + "sourceFieldName": "Entity" + }, + { + "name": "ExpenseSheets", + "label": "Expense Sheets", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "Project" + }, + { + "name": "Children", + "label": "Sub Items", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RealWorkItemHierarchyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Parent" + }, + { + "name": "Shortcuts", + "label": "Shortcuts", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ShortcutLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Parent" + }, + { + "name": "Impacting", + "label": "Impacting", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ProgressImpactLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Parent" + }, + { + "name": "ImpactedBy", + "label": "Impacted By", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ProgressImpactLink", + "relatedTypeName": "GenericProject", + "sourceFieldName": "Child" + }, + { + "name": "AllRisks", + "label": "Risks (Aggregated)", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Risk" + }, + { + "name": "AllIssues", + "label": "Issues (Aggregated)", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Issue" + }, + { + "name": "AllRequests", + "label": "Requests (Aggregated)", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "EnhancementRequest" + }, + { + "name": "AllBugs", + "label": "Bugs (Aggregated)", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Bug" + }, + { + "name": "AllCases", + "label": "Cases (Aggregated)", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Case" + }, + { + "name": "Timesheets", + "label": "Aggregated Time Entries", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "Project" + }, + { + "name": "DirectLaborResources", + "label": "Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "LaborResourceLinkDirect", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "WhereUsedAsShortcut", + "label": "Shortcut in", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ShortcutLink", + "relatedTypeName": "Project", + "sourceFieldName": "Child" + }, + { + "name": "Versions", + "label": "Versions", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Versions", + "sourceFieldName": "Project" + }, + { + "name": "AllFiles", + "label": "Files (Aggregated)", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Document" + }, + { + "name": "FinancialResources", + "label": "Financial Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLinkFinancial", + "relatedTypeName": "GenericResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Portfolios", + "label": "Portfolios", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "PortfolioProjectLink", + "relatedTypeName": "Portfolio", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectAssetResources", + "label": "Work Item's direct Asset Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "AssetResourceLinkDirect", + "relatedTypeName": "GenericAsset", + "sourceFieldName": "WorkItem" + } + ] + }, + { + "typeName": "WorkItem", + "label": "Work Item", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 1600, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1950, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Phase" + ], + "name": "Phase", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Phase", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "StartDateManuallySet", + "presentationType": "Date", + "label": "Start Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "DueDateManuallySet", + "presentationType": "Date", + "label": "Due Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "DurationManuallySet", + "presentationType": "Duration", + "label": "Duration", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Actual Start Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "manuallySetName": "ActualEndDateManuallySet", + "presentationType": "Date", + "label": "Actual End Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TrackStatus" + ], + "name": "TrackStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TrackStatusManuallySet", + "presentationType": "PickList", + "label": "Status", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "StatusChangedOn", + "type": "Date", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Status Changed on", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Conflicts", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Conflicts Flags", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OnCriticalPath", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Other", + "label": "On Critical Path", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StartDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Start Date Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DueDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Due Date Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DurationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Duration Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TrackStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Status Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EarliestStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Earliest Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LatestStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Latest Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EarliestEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Earliest End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LatestEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Latest End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedProgress", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected Progress", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "SchedulingType" + ], + "name": "SchedulingType", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ConstraintsTypeManuallySet", + "presentationType": "PickList", + "label": "Constraint Type", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ImportedFrom" + ], + "name": "ImportedFrom", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Imported From", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Importance" + ], + "name": "Importance", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "includeDataFields": false + }, + "flags": [], + "presentationType": "PickList", + "label": "Importance", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Priority", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Priority", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": true, + "sortable": true, + "format": { + "percentCompleteDisplayFormat": "Detailed", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "PercentCompletedManuallySet", + "presentationType": "Percent", + "label": "% Complete", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompletedManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% Complete Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Manager", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Owner", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Charged Type Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ChildrenCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Direct Sub-items", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuccessorsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Successors", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PredecessorsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Predecessors", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllUserResourcesAndPlaceholdersCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of all Resources", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PostsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of V5 Posts", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ConstraintsTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Constraints Type Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Reportable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "ReportableManuallySet", + "presentationType": "Checkbox", + "label": "Reportable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ReportableManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Reportable Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ChildShortcutCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Sub Shortcut", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "Project", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "WorkPolicy" + ], + "name": "WorkPolicy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Work Policy", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CommitLevel" + ], + "name": "CommitLevel", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Commit Level", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportingStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Reporting start date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Actual Effort", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StartDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualCostManuallySet", + "presentationType": "Currency", + "label": "Actual Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DueDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedBudgetManuallySet", + "presentationType": "Currency", + "label": "Budgeted Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Cost Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudgetManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budgeted Cost Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Time Tracking Effort", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FixedPrice", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Fixed Price", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentInvested", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Invested", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TimeTrackingBilling", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Time Tracking Billing", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Earned Value", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "PlannedRevenueManuallySet", + "presentationType": "Currency", + "label": "Expected Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "CPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ActualRevenueManuallySet", + "presentationType": "Currency", + "label": "Actual Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "SPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Expected Revenue Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Actual Revenue Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Profitability", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PercentProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "% Profitability", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectPlannedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Planned Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectActualBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Actual Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Projected Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "DirectProjectedBilledExpenses", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Direct Projected Billed Expenses", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "RevenueCurrencyType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "RevenueCurrencyTypeManuallySet", + "presentationType": "PickList", + "label": "Revenue Currency Type", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RevenueCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Revenue Currency Type Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "CostCurrencyType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "CostCurrencyTypeManuallySet", + "presentationType": "PickList", + "label": "Cost Currency Type", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CostCurrencyTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Cost Currency Type Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Pending" + ], + "name": "Pending", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Pending", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "IssuesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Cases", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEndDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual End Date Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllowReportingOnSubItems", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "AllowReportingOnSubItemsManuallySet", + "presentationType": "Checkbox", + "label": "Allow Reporting On Sub Items", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllowReportingOnSubItemsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allow Reporting On Sub Items Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CommittedDate", + "type": "Date", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "ignoreIfZeroTime": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Committed Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourcesAndPlaceholdersCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Resources", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "BudgetedHoursManuallySet", + "presentationType": "Duration", + "label": "Budgeted Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost Balance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "BudgetStatus" + ], + "name": "BudgetStatus", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "BudgetStatusManuallySet", + "presentationType": "PickList", + "label": "Budget Status", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetStatusManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Budget Status Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueBalance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Revenue Balance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffortUpdatedFromTimesheets", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "ActualEffortUpdatedFromTimesheetsManuallySet", + "presentationType": "Checkbox", + "label": "Actual Effort Updated from Timesheets", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualEffortUpdatedFromTimesheetsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Effort Updated from Timesheets Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "ParentProject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SfExternalId", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SfExternalName", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Internal ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OrderID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Order ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SKU", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "SKU", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineStartDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Start Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Baseline Due Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineDueDateVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Due Date Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineDurationVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Duration Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "InternalStatus", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Internal Status", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Deliverable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Deliverable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DeliverableType", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Deliverable Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Executable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Other", + "label": "Executable", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItem" + ], + "name": "Parent", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PlannedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Amount", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ChargedAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ChargedAmountManuallySet", + "presentationType": "Currency", + "label": "Charged Amount", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "TCPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "TotalEstimatedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Estimated Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ChargedType" + ], + "name": "Charged", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ChargedTypeManuallySet", + "presentationType": "PickList", + "label": "Charged", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ChargedAmountManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Charged Amount Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EstimatedStartDate", + "type": "DateTime", + "filterable": false, + "sortable": false, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Estimated Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueEarnedValue", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EV", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EstimatedEndDate", + "type": "DateTime", + "filterable": false, + "sortable": false, + "format": { + "displayTimeInUTC": false, + "useOrganizationTimeZone": true, + "includeDataFields": false + }, + "presentationType": "Date", + "label": "Estimated End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "EstimatedDuration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Estimated Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RTCPI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "RTCPI", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ReportableStartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reportable Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CompletnessDefinition", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "% Completeness Uncertain", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ReportableEndDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reportable End Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TaskReportingPolicy" + ], + "name": "TaskReportingPolicy", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "TaskReportingPolicyManuallySet", + "presentationType": "PickList", + "label": "Leaf Tasks Progress Reporting Policy", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ConflictType" + ], + "name": "ConflictType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Conflicts", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "TaskReportingPolicyManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Leaf Tasks Progress Reporting Policy Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FloatingTask", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "To Do List Item", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IndividualReporting", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Individual Completeness Using", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AggregatedStopwatchesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Aggregate Stopwatch Count", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CalculateCompletenessBasedOnEfforts", + "type": "Boolean", + "filterable": true, + "sortable": true, + "manuallySetName": "CalculateCompletenessBasedOnEffortsManuallySet", + "presentationType": "Checkbox", + "label": "Calculate %complete based on efforts", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "StopwatchAggregateState" + ], + "name": "ActiveStopwatch", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "includeDataFields": false + }, + "presentationType": "PickList", + "label": "Active Stopwatch", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CalculateCompletenessBasedOnEffortsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Calculate %complete based on efforts Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StopwatchesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "Stopwatches Count", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetedHoursManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Budgeted Work Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyEAC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "EAC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "PendingTimeTrackingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyREAC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue EAC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "CurrencyETC", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyRETC", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Revenue ETC", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SetByLeveling", + "type": "Long", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Set by leveling", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Template" + ], + "name": "Template", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Template", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GeographicalRegion" + ], + "name": "GeographicalRegion", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Geographical Region", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ResourceUtilizationCategory" + ], + "name": "ResourceUtilizationCategory", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ResourceUtilizationCategoryManuallySet", + "presentationType": "PickList", + "label": "Resource Utilization Category", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Countries" + ], + "name": "Country", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Country", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CountryState" + ], + "name": "StateProvince", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State/Province", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ResourceUtilizationCategoryManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resource Utilization Category Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseType" + ], + "name": "ExpenseType", + "type": "Entity", + "filterable": true, + "sortable": true, + "manuallySetName": "ExpenseTypeManuallySet", + "presentationType": "PickList", + "label": "Expense Type", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BudgetCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost OPEX", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpenseTypeManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Expense Type Manually Set", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ActualCostOPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost OPEX", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostCAPEX", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLROpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Opex", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostNLRCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Non-Labor Capex", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FinancialStart", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Financial Start", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FinancialEnd", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Financial End", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FinancialOldStartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Financial old start date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Cost Non-labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingForecastRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Remaining Forecast Revenue Non-labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Capex YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexActualYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Opex YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CapexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Capex YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OpexBudgetYTD", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Opex YTD", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual billable hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNonBillableHours", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual non billable hours", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ResourceRateDate", + "type": "Date", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "ResourceRateDateManuallySet", + "presentationType": "Date", + "label": "Resource Rate Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourceRateDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resource Rate Date Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastReplanningDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Replanning date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostCapex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Capex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostOpex", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Opex", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Non-labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYBudgetedCostLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Budgeted Cost Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYForecastRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Forecast Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYExpectedRevenueLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Expected Revenue Labor", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FYPlannedProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "FY Planned Profit", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UserResourcesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "# of User Resources", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllUserResourcesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "# of all User Resources", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ProjectCapexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Capex Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ProjectOpexForecastatCompletionCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Project Opex Forecast at Completion Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Agreed Date for Exchange rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Agreed Date for Exchange rate is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SuggestedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Funding", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "FundingManuallySet", + "presentationType": "Currency", + "label": "Funding", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Funding Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingGap", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Gap", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Allocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "AllocationManuallySet", + "presentationType": "Currency", + "label": "Allocation", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "AllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Allocation Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Actual Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SubAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "manuallySetName": "SubAllocationManuallySet", + "presentationType": "Currency", + "label": "Sub Allocation", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfitability", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Planned Contribution %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "name": "SubAllocationManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Sub Allocation Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TargetMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Target Margin", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TotalAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Total Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Unallocated", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unallocated", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "UnusedAllocation", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Unused Allocation", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingAvailable", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Available", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BudgetLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budget Cost Labor & Budget Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingRemaining", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Remaining", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualLaborAndThirdPartyNLRNonBillableCosts", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Cost Labor & Actual Non Billable 3rd Party Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Actual Contribution", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedNetProfit", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Planned Contribution", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedMargin", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "Planned Profitability %", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LaborCostPercentComplete", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Percent", + "label": "% Complete Labor Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualNetRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Net Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedRevenueNLR", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Planned Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SuggestedActualRevenueNLR", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Suggested Actual Revenue Non-Labor", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Contract" + ], + "name": "Contract", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Contract", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ContractPurchaseOrder" + ], + "name": "ContractPurchaseOrder", + "type": "Entity", + "filterable": false, + "sortable": false, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Contract Purchase Order", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "RelatedExpenses", + "label": "Aggregated Expenses", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Expense" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "ProjectCustomers", + "label": "Project Customers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Customer" + }, + { + "name": "TeamMembersAndPlaceholders", + "label": "Work Item Team Members", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "AttachedPosts", + "label": "V5 Posts", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Post", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "RelatedTimesheetEntries", + "label": "Time Entries", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Timesheet", + "sourceFieldName": "WorkItem" + }, + { + "name": "Expenses", + "label": "Expenses", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Expense", + "sourceFieldName": "WorkItem" + }, + { + "name": "OriginatedIssues", + "label": "Originated Cases", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "OriginatedFrom" + }, + { + "name": "Issues", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Case", + "sourceFieldName": "WorkItem" + }, + { + "name": "ResourcesAndPlaceholders", + "label": "Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Reviewers", + "label": "Reviewers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ReviewerLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Managers", + "label": "Managers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ManagerResourceLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "AllTeamMembersAndPlaceholders", + "label": "All Team Members And Placeholders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllManagers", + "label": "All Managers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllReviewers", + "label": "All Reviewers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllResourcesAndPlaceholders", + "label": "All Resources And Placeholders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "Successors", + "label": "Successors", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DependencyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "WorkItem" + }, + { + "name": "Predecessors", + "label": "Predecessors", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DependencyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "DependsOn" + }, + { + "name": "AllTeam", + "label": "Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLink", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "UsersOpenedStopwatches", + "label": "Active Stopwatch Users", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "Stopwatch", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicWorkItemLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "Groups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "", + "relatedTypeName": "Group", + "sourceFieldName": "Entity" + }, + { + "name": "AllWorkItemsWithShortcuts", + "label": "All Work Items With Shortcuts", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "WorkItem" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "CustomizationProfilingData", + "label": "Customization Profiling Data", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "CustomizationProfilingData", + "sourceFieldName": "SourceObject" + }, + { + "name": "AdditionalObjectProperties", + "label": "Overview", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "AdditionalObjectProperties", + "sourceFieldName": "RelatedItem" + }, + { + "name": "RelatedIssues", + "label": "Issues", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Issue", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedRisks", + "label": "Risks", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Risk", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedBugs", + "label": "Bugs", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "Bug", + "sourceFieldName": "WorkItem" + }, + { + "name": "RelatedRequests", + "label": "Requests", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "EnhancementRequest", + "sourceFieldName": "WorkItem" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "LoadOfUserMonthly", + "label": "Labor Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseMonthly", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "SnapshotVersionData", + "label": "Snapshot Versions", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "WorkItemVersion", + "sourceFieldName": "VersionSourceObject" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "LoadOfUser", + "label": "Labor Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RLTimePhaseDaily", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "StaffTimePhasedDataOfUserDaily", + "label": "Staff Time Phased Data (Daily)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataDaily", + "relatedTypeName": "ResourceEntity" + }, + { + "name": "StaffTimePhasedDataOfUserMonthly", + "label": "Staff Time Phased Data (Monthly)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "StaffTimePhasedDataMonthly", + "relatedTypeName": "ResourceEntity" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Targets", + "label": "Targets", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Target", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Objectives", + "label": "Objectives", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Objective", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "Contributions", + "label": "Contributions", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Contribution", + "sourceFieldName": "AssociatedItem" + }, + { + "name": "UserTeamMembers", + "label": "Work Item User Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemTeamLink", + "relatedTypeName": "User", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllUserResources", + "label": "All User Resources", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "UserResources", + "label": "User Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RegularResourceLink", + "relatedTypeName": "GenericUser", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllUserTeamMembers", + "label": "All User Team Members", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "AllImpacted", + "label": "Impacted and Parents", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "WorkItemHierarchyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Child" + }, + { + "name": "WhereUsedAsShortcut", + "label": "Shortcut in", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ShortcutLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Child" + }, + { + "name": "ImpactedBy", + "label": "Impacted By", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ProgressImpactLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Child" + }, + { + "name": "AllImpacting", + "label": "Impacting and Sub Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemHierarchyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Parent" + }, + { + "name": "Tasks", + "label": "Tasks", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "GenericTask", + "sourceFieldName": "Milestone" + }, + { + "name": "Children", + "label": "Sub Items", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "RealWorkItemHierarchyLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Parent" + }, + { + "name": "Shortcuts", + "label": "Shortcuts", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ShortcutLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Parent" + }, + { + "name": "Impacting", + "label": "Impacting", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ProgressImpactLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Parent" + }, + { + "name": "AggregatedAssetResources", + "label": "Work Item's aggregated Asset Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "AssetResourceLinkAggregated", + "relatedTypeName": "GenericAsset", + "sourceFieldName": "WorkItem" + }, + { + "name": "AggregatedLaborResources", + "label": "Aggregated Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "LaborResourceLinkAggregated", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectFixedPriceResources", + "label": "Work Item's direct Fixed Price Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "FixedPriceResourceLinkDirect", + "relatedTypeName": "FixedPriceResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "AggregatedFixedPriceResources", + "label": "Work Item's aggregated Fixed Price Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "FixedPriceResourceLinkAggregated", + "relatedTypeName": "FixedPriceResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "FinancialResources", + "label": "Financial Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ResourceLinkFinancial", + "relatedTypeName": "GenericResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectNonLaborResources", + "label": "Non-Labor Resources", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "NonLaborResourceLinkDirect", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "AggregatedNonLaborResources", + "label": "Aggregated Non-Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "NonLaborResourceLinkAggregated", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectLaborResources", + "label": "Labor Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "LaborResourceLinkDirect", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "WorkItem" + }, + { + "name": "DirectAssetResources", + "label": "Work Item's direct Asset Resources", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "AssetResourceLinkDirect", + "relatedTypeName": "GenericAsset", + "sourceFieldName": "WorkItem" + }, + { + "name": "AllWorkItems", + "label": "All Work Items", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "WorkItem" + }, + { + "name": "WorkItems", + "label": "Work Items", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "PlanningComponent", + "sourceFieldName": "Project" + }, + { + "name": "TargetedIssues", + "label": "Targeted Cases", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Case", + "sourceFieldName": "PlannedFor" + }, + { + "name": "JobTitles", + "label": "Job Titles", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "JobTitleRateLink", + "relatedTypeName": "JobTitle", + "sourceFieldName": "WorkItem" + }, + { + "name": "RequestedResourceEntities", + "label": "Staffing Requests (Resource)", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ResourceRequest", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Project" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CustomerLink", + "relatedTypeName": "Customer", + "sourceFieldName": "Entity" + }, + { + "name": "ExpenseSheets", + "label": "Expense Sheets", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "Project" + }, + { + "name": "AllRisks", + "label": "Risks (Aggregated)", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Risk" + }, + { + "name": "AllIssues", + "label": "Issues (Aggregated)", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Issue" + }, + { + "name": "AllRequests", + "label": "Requests (Aggregated)", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "EnhancementRequest" + }, + { + "name": "AllBugs", + "label": "Bugs (Aggregated)", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Bug" + }, + { + "name": "AllCases", + "label": "Cases (Aggregated)", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Case" + }, + { + "name": "Timesheets", + "label": "Aggregated Time Entries", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "Project" + }, + { + "name": "Versions", + "label": "Versions", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Versions", + "sourceFieldName": "Project" + }, + { + "name": "AllFiles", + "label": "Files (Aggregated)", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Document" + }, + { + "name": "Portfolios", + "label": "Portfolios", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "PortfolioProjectLink", + "relatedTypeName": "Portfolio", + "sourceFieldName": "WorkItem" + } + ] + }, + { + "typeName": "Topic", + "label": "Topic", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4014", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RelatedItemsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Related Items", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.185003.0-881199209F31BEBDE4A202D6B9DC5CE43DBE14F5/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "WorkItems", + "label": "Work Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicWorkItemLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Topic" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "Cases", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicCaseLink", + "relatedTypeName": "Case", + "sourceFieldName": "Topic" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicCustomerLink", + "relatedTypeName": "Customer", + "sourceFieldName": "Topic" + }, + { + "name": "ExpenseSheets", + "label": "Expense Sheets", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicExpenseSheetLink", + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "Topic" + }, + { + "name": "ExpenseEntries", + "label": "Expense Entries", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicExpenseEntryLink", + "relatedTypeName": "Expense", + "sourceFieldName": "Topic" + }, + { + "name": "Groups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicGroupLink", + "relatedTypeName": "Group", + "sourceFieldName": "Topic" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicDocumentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Topic" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + } + ] + }, + { + "typeName": "Following", + "label": "Following", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "User", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "User", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4015", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Follow", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Follow", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Like", + "label": "Like", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "User", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "User", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4016", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ContractPurchaseOrderDiscussionLink", + "label": "Contract Purchase Order Discussion Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "DiscussionMessage", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Discussion", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4017", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ContractDiscussionLink", + "label": "Contract Discussion Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "DiscussionMessage", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Discussion", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4018", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "DecisionDiscussionLink", + "label": "Decision Discussion Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "DiscussionMessage", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Discussion", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4019", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ActionItemDiscussionLink", + "label": "Action Item Discussion Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "DiscussionMessage", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Discussion", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4020", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ContributionDiscussionLink", + "label": "Contribution Discussion Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "DiscussionMessage", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Discussion", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4021", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ObjectiveDiscussionLink", + "label": "Objective Discussion Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "DiscussionMessage", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Discussion", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4022", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TargetDiscussionLink", + "label": "Target Discussion Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "DiscussionMessage", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Discussion", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4023", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "PortfolioDiscussionLink", + "label": "Portfolio Discussion Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "DiscussionMessage", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Discussion", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4024", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "NLRDiscussionLink", + "label": "Non-Labor Resource Discussion Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "DiscussionMessage", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Discussion", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4025", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ReportDiscussionLink", + "label": "Report Discussion Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "DiscussionMessage", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Discussion", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4026", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "UserReportDiscussionLink", + "label": "Report Discussion Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "DiscussionMessage", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Discussion", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4027", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "SystemReportDiscussionLink", + "label": "Saved Report Discussion Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "DiscussionMessage", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Discussion", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4028", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ExpenseEntryDiscussionLink", + "label": "ExpenseEntry Discussion Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "DiscussionMessage", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Discussion", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4029", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ExpenseSheetDiscussionLink", + "label": "ExpenseSheet Discussion Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "DiscussionMessage", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Discussion", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4030", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CustomerDiscussionLink", + "label": "Customer Discussion Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "DiscussionMessage", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Discussion", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4031", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CaseDiscussionLink", + "label": "Case Discussion Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "DiscussionMessage", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Discussion", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4032", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "WorkItemDiscussionLink", + "label": "WorkItem Discussion Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "DiscussionMessage", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Discussion", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4033", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "DiscussionReply", + "label": "Reply", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4034", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Group", + "WorkItem", + "Case", + "Document", + "ExpenseSheet", + "User", + "Asset", + "Customer", + "Expense", + "Topic", + "FoldersAndReports", + "NonLaborResource", + "ResourceRequest", + "Portfolio", + "ActionItem", + "Decision", + "Target", + "Objective", + "Contribution", + "Contract", + "ContractPurchaseOrder" + ], + "name": "Container", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Container", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "defaultValue": "4niecg05efbynzttkgi8qalxp4034", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Body", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": -1, + "flags": [], + "presentationType": "RichText", + "label": "Body", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Via", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Via", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Text", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Text", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "PostType" + ], + "name": "Type", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Type", + "defaultValue": { + "id": "/PostType/StatusUpdate", + "Name": "StatusUpdate" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "PostState" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/PostState/Active", + "Name": "Active" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Style", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "Style", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "DiscussionPost" + ], + "name": "Post", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Post", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "ReplyMarkedType" + ], + "name": "MarkedType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Marked Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DiscussionMessageAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "Lines", + "label": "Lines", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "String" + }, + { + "name": "WorkItems", + "label": "Work Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemDiscussionLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Cases", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseDiscussionLink", + "relatedTypeName": "Case", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CustomerDiscussionLink", + "relatedTypeName": "Customer", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "ExpenseSheets", + "label": "Expense Sheets", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ExpenseSheetDiscussionLink", + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "ExpenseEntries", + "label": "Expense Entries", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ExpenseEntryDiscussionLink", + "relatedTypeName": "Expense", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Reports", + "label": "Related Reports", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ReportDiscussionLink", + "relatedTypeName": "FoldersAndReports", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Contracts", + "label": "Contracts", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ContractDiscussionLink", + "relatedTypeName": "Contract", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "ContractPurchaseOrders", + "label": "Contract Purchase Orders", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ContractPurchaseOrderDiscussionLink", + "relatedTypeName": "ContractPurchaseOrder", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemDiscussionLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionDiscussionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "NonLaborResource", + "label": "Non-Labor Resource", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "NLRDiscussionLink", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Portfolios", + "label": "Portfolios", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "PortfolioDiscussionLink", + "relatedTypeName": "Portfolio", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Targets", + "label": "Targets", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TargetDiscussionLink", + "relatedTypeName": "Target", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Objectives", + "label": "Objectives", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ObjectiveDiscussionLink", + "relatedTypeName": "Objective", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Contributions", + "label": "Contributions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ContributionDiscussionLink", + "relatedTypeName": "Contribution", + "sourceFieldName": "DiscussionMessage" + } + ] + }, + { + "typeName": "DiscussionPost", + "label": "Post", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4035", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Group", + "WorkItem", + "Case", + "Document", + "ExpenseSheet", + "User", + "Asset", + "Customer", + "Expense", + "Topic", + "FoldersAndReports", + "NonLaborResource", + "ResourceRequest", + "Portfolio", + "ActionItem", + "Decision", + "Target", + "Objective", + "Contribution", + "Contract", + "ContractPurchaseOrder", + "MeetingNote" + ], + "name": "Container", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Container", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "defaultValue": "4niecg05efbynzttkgi8qalxp4035", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Body", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": -1, + "flags": [], + "presentationType": "RichText", + "label": "Body", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Via", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Via", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Text", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Text", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "PostType" + ], + "name": "Type", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Type", + "defaultValue": { + "id": "/PostType/StatusUpdate", + "Name": "StatusUpdate" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "PostState" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/PostState/Active", + "Name": "Active" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Style", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "Style", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "DiscussionPost" + ], + "name": "Post", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Post", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RepliesCount", + "type": "Long", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "# of Replies", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "Replies", + "label": "Replies", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "DiscussionReply", + "sourceFieldName": "Post" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicDiscussionLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DiscussionMessageAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "Lines", + "label": "Lines", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "String" + }, + { + "name": "WorkItems", + "label": "Work Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemDiscussionLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Cases", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseDiscussionLink", + "relatedTypeName": "Case", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CustomerDiscussionLink", + "relatedTypeName": "Customer", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "ExpenseSheets", + "label": "Expense Sheets", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ExpenseSheetDiscussionLink", + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "ExpenseEntries", + "label": "Expense Entries", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ExpenseEntryDiscussionLink", + "relatedTypeName": "Expense", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Reports", + "label": "Related Reports", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ReportDiscussionLink", + "relatedTypeName": "FoldersAndReports", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Contracts", + "label": "Contracts", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ContractDiscussionLink", + "relatedTypeName": "Contract", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "ContractPurchaseOrders", + "label": "Contract Purchase Orders", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ContractPurchaseOrderDiscussionLink", + "relatedTypeName": "ContractPurchaseOrder", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemDiscussionLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionDiscussionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "NonLaborResource", + "label": "Non-Labor Resource", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "NLRDiscussionLink", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Portfolios", + "label": "Portfolios", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "PortfolioDiscussionLink", + "relatedTypeName": "Portfolio", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Targets", + "label": "Targets", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TargetDiscussionLink", + "relatedTypeName": "Target", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Objectives", + "label": "Objectives", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ObjectiveDiscussionLink", + "relatedTypeName": "Objective", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Contributions", + "label": "Contributions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ContributionDiscussionLink", + "relatedTypeName": "Contribution", + "sourceFieldName": "DiscussionMessage" + } + ] + }, + { + "typeName": "DiscussionMessage", + "label": "Discussion Message", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Group", + "WorkItem", + "Case", + "Document", + "ExpenseSheet", + "User", + "Asset", + "Customer", + "Expense", + "Topic", + "FoldersAndReports", + "NonLaborResource", + "ResourceRequest", + "Portfolio", + "ActionItem", + "Decision", + "Target", + "Objective", + "Contribution", + "Contract", + "ContractPurchaseOrder" + ], + "name": "Container", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Container", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Body", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": -1, + "flags": [], + "presentationType": "RichText", + "label": "Body", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Via", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Via", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Text", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Text", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "PostType" + ], + "name": "Type", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "PostState" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Style", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "Style", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "DiscussionPost" + ], + "name": "Post", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Post", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DiscussionMessageAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "Lines", + "label": "Lines", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "String" + }, + { + "name": "WorkItems", + "label": "Work Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "WorkItemDiscussionLink", + "relatedTypeName": "WorkItem", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Cases", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseDiscussionLink", + "relatedTypeName": "Case", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CustomerDiscussionLink", + "relatedTypeName": "Customer", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "ExpenseSheets", + "label": "Expense Sheets", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ExpenseSheetDiscussionLink", + "relatedTypeName": "ExpenseSheet", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "ExpenseEntries", + "label": "Expense Entries", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ExpenseEntryDiscussionLink", + "relatedTypeName": "Expense", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Reports", + "label": "Related Reports", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "ReportDiscussionLink", + "relatedTypeName": "FoldersAndReports", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Contracts", + "label": "Contracts", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ContractDiscussionLink", + "relatedTypeName": "Contract", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "ContractPurchaseOrders", + "label": "Contract Purchase Orders", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ContractPurchaseOrderDiscussionLink", + "relatedTypeName": "ContractPurchaseOrder", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemDiscussionLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionDiscussionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "NonLaborResource", + "label": "Non-Labor Resource", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "NLRDiscussionLink", + "relatedTypeName": "NonLaborResource", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Portfolios", + "label": "Portfolios", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "PortfolioDiscussionLink", + "relatedTypeName": "Portfolio", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Targets", + "label": "Targets", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TargetDiscussionLink", + "relatedTypeName": "Target", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Objectives", + "label": "Objectives", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ObjectiveDiscussionLink", + "relatedTypeName": "Objective", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Contributions", + "label": "Contributions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ContributionDiscussionLink", + "relatedTypeName": "Contribution", + "sourceFieldName": "DiscussionMessage" + }, + { + "name": "Replies", + "label": "Replies", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "DiscussionReply", + "sourceFieldName": "Post" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicDiscussionLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + } + ] + }, + { + "typeName": "GroupTaskLink", + "label": "Group Task Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Group", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Group", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4036", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "GroupProjectLink", + "label": "Group Project Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Group", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Group", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4037", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "GroupCaseLink", + "label": "Group Case Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Group", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Group", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4038", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "GroupCustomerLink", + "label": "Group Customer Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Group", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Group", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4039", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "GroupLink", + "label": "Group Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Group", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Group", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "RecycleBinItems", + "label": "Recycle Bin Items", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "DeletedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Deleted By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DeletedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Deleted On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DeletedExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "Related Entity Unique ID", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "DeletedEntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Stopwatch", + "label": "Stopwatch", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Work Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "User", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resource", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4041", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ResourceLink" + ], + "name": "HumanResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Human Resource", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "StopwatchState" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ElapsedTime", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Elapsed Time", + "defaultValue": { + "unit": "Days", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OrganizationElapsedTime", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Organization Elapsed Time", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ResourceManagerLink", + "label": "Resource Manager", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Container", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Container", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Member", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Member", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4042", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Order", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Rank", + "defaultValue": 0, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ProfileLink", + "label": "Profile Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Container", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Container", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Member", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Member", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4043", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "SubGroupHierarchyLink", + "label": "Group Hierarchy", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Container", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Container", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Member", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Member", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4044", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Primary", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Primary", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "GroupMembershipLink", + "label": "Group Member", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Container", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Container", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Member", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Member", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4045", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Primary", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Primary", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Rank", + "defaultValue": 0, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "DiscussionEmailNotifications" + ], + "name": "Notify", + "type": "Entity", + "filterable": false, + "sortable": false, + "presentationType": "PickList", + "label": "Notify", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "PrimaryFlagHistory", + "label": "Primary Flag History", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "PrimaryFlagHistory", + "sourceFieldName": "ReferenceToMain" + } + ] + }, + { + "typeName": "GroupHierarchyLink", + "label": "User Group Hierarchy", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Container", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Container", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Member", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Member", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Primary", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Primary", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "PrimaryFlagHistory", + "label": "Primary Flag History", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "PrimaryFlagHistory", + "sourceFieldName": "ReferenceToMain" + } + ] + }, + { + "typeName": "SkillLink", + "label": "Skill Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Container", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Container", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Member", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Member", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4046", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "MembershipLink", + "label": "Membership", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Container", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Container", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Member", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Member", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "PrimaryFlagHistory", + "label": "Primary Flag History", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "PrimaryFlagHistory", + "sourceFieldName": "ReferenceToMain" + } + ] + }, + { + "typeName": "ContractPurchaseOrderAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4047", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ContractAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4048", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "AssetAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4049", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "BusinessUnitAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4050", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ContributionAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4051", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ObjectiveAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4052", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TargetAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4053", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "DecisionAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4054", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ActionItemAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4055", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "MeetingNoteAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4056", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "PortfolioAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4057", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "NLRAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4058", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "WorkItemAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4059", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "DashboardAttachmentLink", + "label": "Attachments", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4060", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ReportAttachmentLink", + "label": "Attachments", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4061", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "UserAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4062", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ExpenseSheetAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4063", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CustomerAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4064", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "DiscussionMessageAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4065", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ResourceGroupEntityAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4066", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "IssueAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4067", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ExpenseEntryAttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4068", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "AdditionalManagerLink", + "label": "Manager", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Work Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Resource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resource", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Units", + "type": "Double", + "filterable": false, + "sortable": true, + "manuallySetName": "UnitsManuallySet", + "presentationType": "Numeric", + "label": "Units(%)", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4069", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ResourceRole" + ], + "name": "ResourceRole", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Role", + "defaultValue": { + "id": "/ResourceRole/Additional Manager", + "Name": "Additional Manager" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "UnitsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Units Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRegularEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "ActualRegularManuallySet", + "presentationType": "Duration", + "label": "Actual Regular Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRegularManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Regular Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualOvertimeEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "ActualOvertimeEffortManuallySet", + "presentationType": "Duration", + "label": "Actual Overtime Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualOvertimeEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Overtime Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Role" + ], + "name": "Role", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Reviewer Role", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Maximum Project Availability", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": false, + "sortable": true, + "format": { + "percentCompleteDisplayFormat": "Detailed", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "PercentCompletedManuallySet", + "presentationType": "Percent", + "label": "% Complete", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompletedManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% Complete Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CompletnessDefinition", + "type": "Long", + "filterable": false, + "sortable": false, + "presentationType": "Numeric", + "label": "% Completeness Uncertain", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PendingTime", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing regular rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing overtime rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Original Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ManagerRole" + ], + "name": "ManagerRole", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Manager's Role", + "defaultValue": { + "id": "/ManagerRole/Owner", + "Name": "Owner" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + } + ] + }, + { + "typeName": "OwnerLink", + "label": "Owner", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Work Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Resource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resource", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Units", + "type": "Double", + "filterable": false, + "sortable": true, + "manuallySetName": "UnitsManuallySet", + "presentationType": "Numeric", + "label": "Units(%)", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4070", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ResourceRole" + ], + "name": "ResourceRole", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Role", + "defaultValue": { + "id": "/ResourceRole/Manager", + "Name": "Manager" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "UnitsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Units Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRegularEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "ActualRegularManuallySet", + "presentationType": "Duration", + "label": "Actual Regular Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRegularManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Regular Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualOvertimeEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "ActualOvertimeEffortManuallySet", + "presentationType": "Duration", + "label": "Actual Overtime Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualOvertimeEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Overtime Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Role" + ], + "name": "Role", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Reviewer Role", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Maximum Project Availability", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": false, + "sortable": true, + "format": { + "percentCompleteDisplayFormat": "Detailed", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "PercentCompletedManuallySet", + "presentationType": "Percent", + "label": "% Complete", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompletedManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% Complete Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CompletnessDefinition", + "type": "Long", + "filterable": false, + "sortable": false, + "presentationType": "Numeric", + "label": "% Completeness Uncertain", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PendingTime", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing regular rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing overtime rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Original Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ManagerRole" + ], + "name": "ManagerRole", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Manager's Role", + "defaultValue": { + "id": "/ManagerRole/Owner", + "Name": "Owner" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + } + ] + }, + { + "typeName": "ManagerResourceLink", + "label": "Managers", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Work Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Resource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resource", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Units", + "type": "Double", + "filterable": false, + "sortable": true, + "manuallySetName": "UnitsManuallySet", + "presentationType": "Numeric", + "label": "Units(%)", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ResourceRole" + ], + "name": "ResourceRole", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Role", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "UnitsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Units Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRegularEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "ActualRegularManuallySet", + "presentationType": "Duration", + "label": "Actual Regular Effort", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRegularManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Regular Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualOvertimeEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "ActualOvertimeEffortManuallySet", + "presentationType": "Duration", + "label": "Actual Overtime Effort", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualOvertimeEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Overtime Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Role" + ], + "name": "Role", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Reviewer Role", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Maximum Project Availability", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": false, + "sortable": true, + "format": { + "percentCompleteDisplayFormat": "Detailed", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "PercentCompletedManuallySet", + "presentationType": "Percent", + "label": "% Complete", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompletedManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% Complete Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CompletnessDefinition", + "type": "Long", + "filterable": false, + "sortable": false, + "presentationType": "Numeric", + "label": "% Completeness Uncertain", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PendingTime", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing regular rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing overtime rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": false, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Original Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ManagerRole" + ], + "name": "ManagerRole", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Manager's Role", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + } + ] + }, + { + "typeName": "RegularResourceLink", + "label": "Resource", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Work Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Resource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resource", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Units", + "type": "Double", + "filterable": true, + "sortable": true, + "manuallySetName": "UnitsManuallySet", + "presentationType": "Numeric", + "label": "Units(%)", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4071", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ResourceRole" + ], + "name": "ResourceRole", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Role", + "defaultValue": { + "id": "/ResourceRole/Resource", + "Name": "Resource" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "JobAssetType" + ], + "name": "JobTitleForBilling", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Job Title for Billing", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "UnitsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Units Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRegularEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "ActualRegularManuallySet", + "presentationType": "Duration", + "label": "Actual Regular Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRegularManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Regular Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualOvertimeEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "ActualOvertimeEffortManuallySet", + "presentationType": "Duration", + "label": "Actual Overtime Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualOvertimeEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Overtime Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Role" + ], + "name": "Role", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Reviewer Role", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Maximum Project Availability", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": true, + "sortable": true, + "format": { + "percentCompleteDisplayFormat": "Detailed", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "PercentCompletedManuallySet", + "presentationType": "Percent", + "label": "% Complete", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompletedManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% Complete Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CompletnessDefinition", + "type": "Long", + "filterable": false, + "sortable": false, + "presentationType": "Numeric", + "label": "% Completeness Uncertain", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PendingTime", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing regular rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing overtime rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Original Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Active", + "Name": "Active" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "InactiveDate", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Inactive date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResourceCalendarExceptionCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Resource Calendar Exceptions", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AccumulatedWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Accumulated Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "TotalAssignment", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Total Project Assignment", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "TimesheetsAssignedToResource", + "label": "Timesheets Assigned to Resource", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "HumanResource" + }, + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + } + ] + }, + { + "typeName": "ReviewerLink", + "label": "Reviewer", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Work Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Resource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resource", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Units", + "type": "Double", + "filterable": false, + "sortable": true, + "manuallySetName": "UnitsManuallySet", + "presentationType": "Numeric", + "label": "Units(%)", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4072", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ResourceRole" + ], + "name": "ResourceRole", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Role", + "defaultValue": { + "id": "/ResourceRole/Reviewer", + "Name": "Reviewer" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "UnitsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Units Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRegularEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "ActualRegularManuallySet", + "presentationType": "Duration", + "label": "Actual Regular Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRegularManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Regular Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualOvertimeEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "ActualOvertimeEffortManuallySet", + "presentationType": "Duration", + "label": "Actual Overtime Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualOvertimeEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Overtime Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Role" + ], + "name": "Role", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Reviewer Role", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Maximum Project Availability", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": false, + "sortable": true, + "format": { + "percentCompleteDisplayFormat": "Detailed", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "PercentCompletedManuallySet", + "presentationType": "Percent", + "label": "% Complete", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompletedManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% Complete Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CompletnessDefinition", + "type": "Long", + "filterable": false, + "sortable": false, + "presentationType": "Numeric", + "label": "% Completeness Uncertain", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PendingTime", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing regular rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing overtime rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Original Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + } + ] + }, + { + "typeName": "WorkItemTeamLink", + "label": "Work Item Team Member", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Work Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Resource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resource", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Units", + "type": "Double", + "filterable": true, + "sortable": true, + "manuallySetName": "UnitsManuallySet", + "presentationType": "Numeric", + "label": "Units(%)", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ResourceRole" + ], + "name": "ResourceRole", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Role", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "UnitsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Units Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRegularEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "ActualRegularManuallySet", + "presentationType": "Duration", + "label": "Actual Regular Effort", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRegularManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Regular Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualOvertimeEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "ActualOvertimeEffortManuallySet", + "presentationType": "Duration", + "label": "Actual Overtime Effort", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualOvertimeEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Overtime Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Role" + ], + "name": "Role", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Reviewer Role", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Maximum Project Availability", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": true, + "sortable": true, + "format": { + "percentCompleteDisplayFormat": "Detailed", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "PercentCompletedManuallySet", + "presentationType": "Percent", + "label": "% Complete", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompletedManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% Complete Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CompletnessDefinition", + "type": "Long", + "filterable": false, + "sortable": false, + "presentationType": "Numeric", + "label": "% Completeness Uncertain", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PendingTime", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing regular rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing overtime rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BaselineWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Baseline Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Baseline Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Baseline Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BaselineCreationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Baseline Creation Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OriginalWork", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Original Work", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalWorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Duration", + "label": "Original Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalCostsVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Original Costs Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OriginalRevenueVariance", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Original Revenue Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "StartDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Start Date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + }, + { + "name": "TimesheetsAssignedToResource", + "label": "Timesheets Assigned to Resource", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "HumanResource" + } + ] + }, + { + "typeName": "JobTitleRateLink", + "label": "Rate Holder", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Work Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Resource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resource", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Units", + "type": "Double", + "filterable": false, + "sortable": true, + "manuallySetName": "UnitsManuallySet", + "presentationType": "Numeric", + "label": "Units(%)", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4073", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ResourceRole" + ], + "name": "ResourceRole", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Role", + "defaultValue": { + "id": "/ResourceRole/RateHolder", + "Name": "RateHolder" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "UnitsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Units Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRegularEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "ActualRegularManuallySet", + "presentationType": "Duration", + "label": "Actual Regular Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRegularManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Regular Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualOvertimeEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "ActualOvertimeEffortManuallySet", + "presentationType": "Duration", + "label": "Actual Overtime Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualOvertimeEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Overtime Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Role" + ], + "name": "Role", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Reviewer Role", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Maximum Project Availability", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": false, + "sortable": true, + "format": { + "percentCompleteDisplayFormat": "Detailed", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "PercentCompletedManuallySet", + "presentationType": "Percent", + "label": "% Complete", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompletedManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% Complete Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CompletnessDefinition", + "type": "Long", + "filterable": false, + "sortable": false, + "presentationType": "Numeric", + "label": "% Completeness Uncertain", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PendingTime", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing regular rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing overtime rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Cost", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + } + ] + }, + { + "typeName": "ResourceLink", + "label": "Assigned", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Work Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Resource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resource", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Units", + "type": "Double", + "filterable": true, + "sortable": true, + "manuallySetName": "UnitsManuallySet", + "presentationType": "Numeric", + "label": "Units(%)", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ResourceRole" + ], + "name": "ResourceRole", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Role", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "UnitsManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Units Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Duration", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRegularEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "ActualRegularManuallySet", + "presentationType": "Duration", + "label": "Actual Regular Effort", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualRegularManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Regular Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ActualOvertimeEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "ActualOvertimeEffortManuallySet", + "presentationType": "Duration", + "label": "Actual Overtime Effort", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualOvertimeEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Actual Overtime Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Role" + ], + "name": "Role", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Reviewer Role", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Availability", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Maximum Project Availability", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": true, + "sortable": true, + "format": { + "percentCompleteDisplayFormat": "Detailed", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "manuallySetName": "PercentCompletedManuallySet", + "presentationType": "Percent", + "label": "% Complete", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompletedManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% Complete Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CompletnessDefinition", + "type": "Long", + "filterable": false, + "sortable": false, + "presentationType": "Numeric", + "label": "% Completeness Uncertain", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PendingTime", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Pending Time", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueRateManuallySet", + "presentationType": "Currency", + "label": "Billing regular rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "RevenueOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Billing overtime rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revenue Overtime Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per regular hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedBudget", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Budgeted Cost", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "manuallySetName": "CostOvertimeRateManuallySet", + "presentationType": "Currency", + "label": "Cost rate per overtime hour", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "PlannedRevenue", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Expected Revenue", + "system": false, + "calculated": true, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Cost Overtime Rate Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + }, + { + "name": "TimesheetsAssignedToResource", + "label": "Timesheets Assigned to Resource", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Timesheet", + "sourceFieldName": "HumanResource" + } + ] + }, + { + "typeName": "ProgressImpactLink", + "label": "Progress Impact", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Parent", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Child", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Child", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImpactWeight", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Impact Weight", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Sequence", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Sequence Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Shortcut", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Is Shortcut", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4074", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachToRoadmap", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Attach to Roadmap", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "ParentProject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "ParentProject", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "RealWorkItemHierarchyLink", + "label": "Parent", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Parent", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Child", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Child", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImpactWeight", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Impact Weight", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Sequence", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Sequence Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Shortcut", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Is Shortcut", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4075", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachToRoadmap", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Attach to Roadmap", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "ParentProject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "ParentProject", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "FundingAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Funding Amount", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "FundingPercentage", + "type": "Double", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Funding %", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ShortcutLink", + "label": "Shortcut", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Parent", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Child", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Child", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImpactWeight", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Impact Weight", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Sequence", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Sequence Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Shortcut", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Is Shortcut", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4076", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachToRoadmap", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Attach to Roadmap", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "ParentProject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "ParentProject", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "BaseWorkItemHierarchyLink", + "label": "Hierarchy", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Parent", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Child", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Child", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImpactWeight", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Impact Weight", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Sequence", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Sequence Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Shortcut", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Is Shortcut", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachToRoadmap", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Attach to Roadmap", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "ParentProject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "ParentProject", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "WorkItemHierarchyLink", + "label": "Hierarchy", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Parent", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Parent", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Child", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Child", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImpactWeight", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Impact Weight", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Sequence", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Sequence Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Shortcut", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Is Shortcut", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachToRoadmap", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Attach to Roadmap", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "ParentProject", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "ParentProject", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "BusinessRuleError", + "label": "Business Rule Error", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "TriggeredBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Triggered By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "When", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "When", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ErrorMessage", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1024, + "presentationType": "Text", + "label": "Error Message", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "RelatedItem", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Object", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BusinessRuleName", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Related Business Rule Name", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "SchedulingType", + "label": "Time Constraints Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4078", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "UnitOfMeasure", + "label": "Unit of Measure format", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4079", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CurrencyType", + "label": "Currency Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4080", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ScoreRank", + "label": "Score Rank", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4081", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.168061.0-7B28AA4BF9271F3092A45F20E57262C710D3B6A4/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ContractStatus", + "label": "Contract Status", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4082", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ContractState", + "label": "Conatact State", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4083", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ContractSize", + "label": "Contract Size", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4084", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ContractType", + "label": "Contract Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4085", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "PhasingState", + "label": "Phasing State", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4086", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "SentimentStatus", + "label": "Sentiment Status", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4087", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "RestrictedBusinessUnitSource", + "label": "Restricted BusinessUnit Source", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4088", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "RestrictedFieldsSet", + "label": "Restricted Fields Set", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4089", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.168035.0-2F643EE6D03FE1BFE0046E621EEE55B1642DB2EC/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ExpectedTimesheets", + "label": "Expected Timesheets", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4090", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "UpdateForecastDefault", + "label": "Update Forecast default", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4091", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "NLRExchangeRateDateOption", + "label": "NLR Budget & Forecast Exchange Rate Date Option", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4092", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "PermissionInheritanceForExternalUsers", + "label": "Permission Inheritance for External Users", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4093", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TargetUnitScale", + "label": "Target Unit Scale", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4094", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TargetCurrencyType", + "label": "Target Unit Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4095", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TargetUnitType", + "label": "Target Unit", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4096", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TargetStatus", + "label": "Status", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4097", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TargetType", + "label": "Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4098", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TargetState", + "label": "State", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4099", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "DecisionState", + "label": "State", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4100", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "MeetingAttendeeState", + "label": "State", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4101", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ActionItemState", + "label": "State", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4102", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "MeetingNoteState", + "label": "State", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4103", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "LoginType", + "label": "Login Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4104", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "PortfolioState", + "label": "State", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4105", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "PortfolioType", + "label": "Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4106", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ClarizenGoBoardType", + "label": "AdaptiveWork Go Board Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4107", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ProjectBillingType", + "label": "Project Billing Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4108", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TimeApproval", + "label": "Time Approval", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4109", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "NLRRescheduleMode", + "label": "NLR Reschedule Mode", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4110", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ClarizenGoStatus", + "label": "AdaptiveWorkGoStatus", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4111", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ZiflowProofAlert", + "label": "ZiflowAlert", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4112", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "AuditAction", + "label": "Audit Action", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4113", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TrackStatus", + "label": "Track Status", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4114", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CustomObjectIcons", + "label": "Custom Object Icons", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4115", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TemplateCategory", + "label": "Template Category", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4116", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "GeoLocation", + "label": "Geo Location", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4117", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TemplateItemType", + "label": "Template Item Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4118", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "LaborBudgetPickup", + "label": "Labor Cost Base", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4119", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ExpenseType", + "label": "Expense Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4120", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "NonLaborResourceLinkCategory", + "label": "Category", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4121", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ReportingPeriodPickup", + "label": "Reporting Period Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4122", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "GeographicalRegion", + "label": "Geographical Region", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4123", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ResourceUtilizationCategory", + "label": "Resource Utilization Category", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4124", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "InvestmentType", + "label": "Investment Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4125", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "PackagedObjectCategory", + "label": "Packaged Object Category", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4126", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "NotifyUsers", + "label": "Discussion Notify Users", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4127", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "EditorsMode", + "label": "Editor Mode", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4128", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ManagerRole", + "label": "Manager's Role", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4129", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "DataObjectType", + "label": "Data Object Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4130", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "NumericFormat", + "label": "Numeric Format", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4131", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Role", + "label": "Role", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4132", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "DashboardStatus", + "label": "Dashboard Status", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4133", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "UserShortcut", + "label": "UserShortcut", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4134", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.54.0-0909E5BB50184C12859FCE6C8A9A745DFE0103E7/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "IntegrationAuthenticationType", + "label": "Integration Authentication Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4135", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "AuthorizationGroup", + "label": "AuthorizationGroup", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4136", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CustomIcon", + "label": "Custom Icon", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4137", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ProofAlert", + "label": "Alert", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4138", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ProofRole", + "label": "Role", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4139", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TriggeredBy", + "label": "Triggered By", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4140", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "SyncStatus", + "label": "Sync Status", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4141", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ReplyMarkedType", + "label": "Reply Marked Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4142", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CompanySize", + "label": "Company Size", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4143", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CustomerSuccessStatus", + "label": "Customer Success Status", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4144", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Industry", + "label": "Industry", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4145", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Tier", + "label": "Tier", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4146", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "AccountStatus", + "label": "Account Status", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4147", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "LicenseType", + "label": "License Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4148", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "LandingPage", + "label": "Landing Page", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4149", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "StorageType", + "label": "Storage Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4150", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ShortDateFormat", + "label": "Short Date Format", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4151", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ConflictType", + "label": "Conflict Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4152", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ProjectSize", + "label": "Project Size", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4153", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "PostState", + "label": "Post State", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4154", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "PostType", + "label": "Post Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4155", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "DiscussionEmailNotifications", + "label": "Notify me", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4156", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CompletenessRole", + "label": "Completeness Roles", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4157", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "SpecialRole", + "label": "Special roles", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4158", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "FileType", + "label": "File Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4159", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "WidgetType", + "label": "Widget Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4160", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CreatorType", + "label": "Creator Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4161", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "StopwatchAggregateState", + "label": "Stopwatch Aggregate Status", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4162", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CommentType", + "label": "Comment Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4163", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "StopwatchState", + "label": "State", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4164", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Region", + "label": "Region", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4165", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Package", + "label": "Package", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4166", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CaseBusinessImpact", + "label": "Business Impact", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4167", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "State", + "label": "State", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4168", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TaskReportingPolicy", + "label": "Task Reporting Policy", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4169", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CaseState", + "label": "State", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4170", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ChargedType", + "label": "Charged Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4171", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "RiskImpact", + "label": "Risks Impact", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4172", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "RisksRate", + "label": "Risks Rate", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4173", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "BusinessImpact", + "label": "Business Impact", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4174", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ExceptionType", + "label": "Exception Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4175", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ObjectAccessType", + "label": "Object Access Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4176", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Months", + "label": "Months", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4177", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "WeekDays", + "label": "Week Days", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4178", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "RiskState", + "label": "Risk Strategy", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4179", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "DependencyType", + "label": "Dependency Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4180", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Pending", + "label": "Pending", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4181", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Severity", + "label": "Severity", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4182", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ExpenseCategory", + "label": "Expense Category", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4183", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "WorkPolicy", + "label": "Work Policy", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4184", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "RecipientType", + "label": "Recipient Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4185", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "RateType", + "label": "Rate Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4186", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ResourceRole", + "label": "Resource Role Code", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4187", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Importance", + "label": "Importance", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4188", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Language", + "label": "NLS Languages", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4189", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "RecurrenceType", + "label": "Recurrence", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4190", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CommitLevel", + "label": "Commit Level", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4191", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CountryState", + "label": "State/Province", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4192", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ReportExtensionType", + "label": "Report Extension Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4193", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ProjectType", + "label": "Project Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4194", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "BudgetStatus", + "label": "Budget Status", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4195", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Countries", + "label": "Countries", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4196", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ImportedFrom", + "label": "Imported From", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4197", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "TimeZone", + "label": "Time zone", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4198", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Offset", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "UTC Offset in Minutes", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Widget", + "label": "Widgets", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ViewCounter", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "View Counter", + "defaultValue": 0, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Revoked", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Revoked", + "defaultValue": false, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExpirationDate", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Expiration Date", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WidgetType" + ], + "name": "WidgetType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Widget Type", + "defaultValue": { + "id": "/WidgetType/Roadmap", + "Name": "Roadmap" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "WidgetUrl", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 2000, + "presentationType": "Url", + "label": "Widget Url", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "HasPassword", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Has Password", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EmailDate", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Email Date", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NumberOfLoginFailures", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Number Of Login Failures", + "defaultValue": 0, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CaseCustomerLink", + "label": "Case Customer Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Customer", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Customer", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Submitted", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Submitted", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Committed", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Resolution committed", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CommittedDate", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Committed date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4200", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "IssueTeamMembers", + "label": "Case Team", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Case", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Case", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "TeamMember", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Team Member", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4201", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "RelatedWork", + "label": "Related Work", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Case", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Case", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Work Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImpactWeight", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Impact Weight", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4202", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "EnhancementRequest", + "label": "Request", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1950, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4203", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "% Complete", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PostsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of V5 Posts", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Title", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Title", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Priority", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Priority", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Mandatory", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Mandatory", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "Owner", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Due date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "AssignedTo", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Assigned to", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AssignmentDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Assignment date", + "defaultValue": "2026-06-02T17:04:54.5321389Z", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "SubmittedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Submitted by", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SubmissionDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Submission date", + "defaultValue": "2026-06-02T17:04:54.5321389Z", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "EvaluatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Evaluated by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "EvaluationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Evaluation date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "OpenedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Opened by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "OpeningDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date Opened", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "ResolvedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resolved by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ResolvedDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Resolved date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResolutionDetails", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Resolution Details", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "ClosedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Closed by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ClosureDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Closed date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "RejectedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Rejected by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RejectionDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Rejection date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RejectDetails", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Reject details", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "ReopenedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Reopened by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReopeningDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reopened date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ReopenReasons", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Reopen reasons", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "DeferredBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Deferred by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DeferringDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Deferred date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Comment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Comment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "PlannedFor", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resolved In", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportedbyCustomer", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Reported by Customer", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Category", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Category", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DuplicateTo", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Duplicate To", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlainText", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "PlainText of Description", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DeferReasons", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Defer reasons", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Justification", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Justification", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BusinessAlignment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Business Alignment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedSavings", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Planned Savings", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedBusinessValue", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Expected Business Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "GoalsAchieved", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Goals achieved", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedROI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected ROI", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CaseBusinessImpact" + ], + "name": "BusinessImpact", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Business Impact", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Score", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Total Score", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "PlanningComponent", + "Project" + ], + "name": "OriginatedFrom", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Originated from", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CaseState" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User", + "ContactPerson" + ], + "name": "ReportedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Reported By", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportedByMail", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Reported By Email", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GeographicalRegion" + ], + "name": "GeographicalRegion", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Geographical Region", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Countries" + ], + "name": "Country", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Country", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CountryState" + ], + "name": "StateProvince", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State/Province", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Document" + ], + "name": "DefaultIntegrationPath", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Default Integration Path", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExpectedCost", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected Cost", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExpectedRevenue", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected Revenue", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Risks", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1024, + "presentationType": "Text", + "label": "Potential Risks", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Mitigation", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1024, + "presentationType": "Text", + "label": "Mitigation", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "RisksRate" + ], + "name": "RisksRate", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Risks Rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "RiskImpact" + ], + "name": "RisksImpact", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Risks Impact", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RisksTotalScore", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Risks Total Score", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Severity" + ], + "name": "Severity", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Value", + "includeDataFields": false + }, + "flags": [], + "presentationType": "PickList", + "label": "Importance", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "RequestType" + ], + "name": "RequestType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Request Type", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "Contracts", + "label": "Contracts", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseContractLink", + "relatedTypeName": "Contract", + "sourceFieldName": "Case" + }, + { + "name": "ContractPurchaseOrders", + "label": "Contract Purchase Orders", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseContractPurchaseOrderLink", + "relatedTypeName": "ContractPurchaseOrder", + "sourceFieldName": "Case" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Groups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Group", + "sourceFieldName": "Entity" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "IssueAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "AttachedPosts", + "label": "V5 Posts", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Post", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseCustomerLink", + "relatedTypeName": "Customer", + "sourceFieldName": "Entity" + }, + { + "name": "AllTeamMembers", + "label": "Team And Subscribers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "WorkItems", + "label": "Work Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Case" + }, + { + "name": "Team", + "label": "Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "IssueTeamMembers", + "relatedTypeName": "User", + "sourceFieldName": "Case" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicCaseLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "AdditionalObjectProperties", + "label": "Overview", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "AdditionalObjectProperties", + "sourceFieldName": "RelatedItem" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + } + ] + }, + { + "typeName": "Bug", + "label": "Bug", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 1950, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4204", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "% Complete", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PostsCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of V5 Posts", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Title", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Title", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Severity" + ], + "name": "Severity", + "type": "Entity", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Value", + "includeDataFields": false + }, + "flags": [], + "presentationType": "PickList", + "label": "Importance", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Priority", + "type": "Integer", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Priority", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Mandatory", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Mandatory", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "Owner", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Due date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "AssignedTo", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Assigned to", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AssignmentDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Assignment date", + "defaultValue": "2026-06-02T17:04:55.0833989Z", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "SubmittedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Submitted by", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SubmissionDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Submission date", + "defaultValue": "2026-06-02T17:04:55.0833989Z", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "EvaluatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Evaluated by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "EvaluationDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Evaluation date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "OpenedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Opened by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "OpeningDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Date Opened", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "ResolvedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resolved by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ResolvedDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Resolved date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResolutionDetails", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Resolution Details", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "ClosedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Closed by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ClosureDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Closed date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "RejectedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Rejected by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RejectionDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Rejection date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RejectDetails", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Reject details", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "ReopenedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Reopened by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReopeningDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Reopened date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ReopenReasons", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Reopen reasons", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "DeferredBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Deferred by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DeferringDate", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Deferred date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Comment", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Comment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "PlannedFor", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resolved In", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportedbyCustomer", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Reported by Customer", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Category", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Category", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DuplicateTo", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Duplicate To", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlainText", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "PlainText of Description", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DeferReasons", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Defer reasons", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": false, + "sortable": true, + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": false, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Justification", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Justification", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BusinessAlignment", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Business Alignment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedSavings", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Planned Savings", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedBusinessValue", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Expected Business Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "GoalsAchieved", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Goals achieved", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedROI", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected ROI", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CaseBusinessImpact" + ], + "name": "BusinessImpact", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Business Impact", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Score", + "type": "Double", + "filterable": false, + "sortable": true, + "presentationType": "Numeric", + "label": "Total Score", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "PlanningComponent", + "Project" + ], + "name": "OriginatedFrom", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Originated from", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CaseState" + ], + "name": "State", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User", + "ContactPerson" + ], + "name": "ReportedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Reported By", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportedByMail", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Reported By Email", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GeographicalRegion" + ], + "name": "GeographicalRegion", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Geographical Region", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Countries" + ], + "name": "Country", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Country", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CountryState" + ], + "name": "StateProvince", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State/Province", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": false, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Document" + ], + "name": "DefaultIntegrationPath", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Default Integration Path", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Regression", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Regression", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImpactArea", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "Impact Area", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FoundInBuild", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Found in Build", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IntegratedInBuild", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Integrated in Build", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ClosedInBuild", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Closed in Build", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ReopenedInBuild", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Reopened in Build", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SfExternalId", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SfExternalName", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ZdExternalId", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Zendesk ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ZdExternalName", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Zendesk Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "Contracts", + "label": "Contracts", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseContractLink", + "relatedTypeName": "Contract", + "sourceFieldName": "Case" + }, + { + "name": "ContractPurchaseOrders", + "label": "Contract Purchase Orders", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseContractPurchaseOrderLink", + "relatedTypeName": "ContractPurchaseOrder", + "sourceFieldName": "Case" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Groups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Group", + "sourceFieldName": "Entity" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "IssueAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "AttachedPosts", + "label": "V5 Posts", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Post", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseCustomerLink", + "relatedTypeName": "Customer", + "sourceFieldName": "Entity" + }, + { + "name": "AllTeamMembers", + "label": "Team And Subscribers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "WorkItems", + "label": "Work Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Case" + }, + { + "name": "Team", + "label": "Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "IssueTeamMembers", + "relatedTypeName": "User", + "sourceFieldName": "Case" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicCaseLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "AdditionalObjectProperties", + "label": "Overview", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "AdditionalObjectProperties", + "sourceFieldName": "RelatedItem" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + } + ] + }, + { + "typeName": "Risk", + "label": "Risk", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1950, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4205", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "% Complete", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PostsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of V5 Posts", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Title", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Title", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Severity" + ], + "name": "Severity", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Value", + "includeDataFields": false + }, + "flags": [], + "presentationType": "PickList", + "label": "Importance", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Priority", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Priority", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Mandatory", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Mandatory", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "Owner", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Due date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "AssignedTo", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Assigned to", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AssignmentDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Assignment date", + "defaultValue": "2026-06-02T17:04:55.0883993Z", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "SubmittedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Submitted by", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SubmissionDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Submission date", + "defaultValue": "2026-06-02T17:04:55.0883993Z", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "EvaluatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Evaluated by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "EvaluationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Evaluation date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "OpenedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Opened by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "OpeningDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date Opened", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "ResolvedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resolved by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ResolvedDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Resolved date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResolutionDetails", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Resolution Details", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "ClosedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Closed by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ClosureDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Closed date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "RejectedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Rejected by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RejectionDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Rejection date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RejectDetails", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Reject details", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "ReopenedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Reopened by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReopeningDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reopened date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ReopenReasons", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Reopen reasons", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "DeferredBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Deferred by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DeferringDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Deferred date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Comment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Comment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "PlannedFor", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resolved In", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportedbyCustomer", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Reported by Customer", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Category", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Category", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DuplicateTo", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Duplicate To", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlainText", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "PlainText of Description", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DeferReasons", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Defer reasons", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Justification", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Justification", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BusinessAlignment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Business Alignment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedSavings", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Planned Savings", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedBusinessValue", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Expected Business Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "GoalsAchieved", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Goals achieved", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedROI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected ROI", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CaseBusinessImpact" + ], + "name": "BusinessImpact", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Business Impact", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Score", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Total Score", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "PlanningComponent", + "Project" + ], + "name": "OriginatedFrom", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Originated from", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CaseState" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User", + "ContactPerson" + ], + "name": "ReportedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Reported By", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportedByMail", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Reported By Email", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GeographicalRegion" + ], + "name": "GeographicalRegion", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Geographical Region", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Countries" + ], + "name": "Country", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Country", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CountryState" + ], + "name": "StateProvince", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State/Province", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Document" + ], + "name": "DefaultIntegrationPath", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Default Integration Path", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PercentProbability", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "% Probability", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Impact", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Impact", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "TriggerDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Trigger Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "MitigationPlan", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Response Plan Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ContingencyPlan", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Contingency Plan", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RiskRate", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Risk Rate", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "RiskState" + ], + "name": "RiskState", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Risk Strategy", + "defaultValue": { + "id": "/RiskState/Accepted", + "Name": "Accepted" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "ContractPurchaseOrders", + "label": "Contract Purchase Orders", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseContractPurchaseOrderLink", + "relatedTypeName": "ContractPurchaseOrder", + "sourceFieldName": "Case" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Groups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Group", + "sourceFieldName": "Entity" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "IssueAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "AttachedPosts", + "label": "V5 Posts", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Post", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseCustomerLink", + "relatedTypeName": "Customer", + "sourceFieldName": "Entity" + }, + { + "name": "AllTeamMembers", + "label": "Team And Subscribers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "WorkItems", + "label": "Work Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Case" + }, + { + "name": "Team", + "label": "Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "IssueTeamMembers", + "relatedTypeName": "User", + "sourceFieldName": "Case" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicCaseLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "AdditionalObjectProperties", + "label": "Overview", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "AdditionalObjectProperties", + "sourceFieldName": "RelatedItem" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + } + ] + }, + { + "typeName": "Issue", + "label": "Issue", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1950, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4206", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "% Complete", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PostsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of V5 Posts", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Title", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Title", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Severity" + ], + "name": "Severity", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Value", + "includeDataFields": false + }, + "flags": [], + "presentationType": "PickList", + "label": "Importance", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Priority", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Priority", + "defaultValue": 0, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Mandatory", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Mandatory", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "Owner", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Due date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "AssignedTo", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Assigned to", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AssignmentDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Assignment date", + "defaultValue": "2026-06-02T17:04:55.1654078Z", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "SubmittedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Submitted by", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SubmissionDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Submission date", + "defaultValue": "2026-06-02T17:04:55.1654078Z", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "EvaluatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Evaluated by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "EvaluationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Evaluation date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "OpenedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Opened by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "OpeningDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date Opened", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "ResolvedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resolved by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ResolvedDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Resolved date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResolutionDetails", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Resolution Details", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "ClosedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Closed by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ClosureDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Closed date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "RejectedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Rejected by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RejectionDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Rejection date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RejectDetails", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Reject details", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "ReopenedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Reopened by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReopeningDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reopened date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ReopenReasons", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Reopen reasons", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "DeferredBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Deferred by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DeferringDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Deferred date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Comment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Comment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "PlannedFor", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resolved In", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportedbyCustomer", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Reported by Customer", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Category", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Category", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DuplicateTo", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Duplicate To", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlainText", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "PlainText of Description", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DeferReasons", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Defer reasons", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "defaultValue": { + "unit": "Hours", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Justification", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Justification", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BusinessAlignment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Business Alignment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedSavings", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Planned Savings", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedBusinessValue", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Expected Business Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "GoalsAchieved", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Goals achieved", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedROI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected ROI", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CaseBusinessImpact" + ], + "name": "BusinessImpact", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Business Impact", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Score", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Total Score", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "PlanningComponent", + "Project" + ], + "name": "OriginatedFrom", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Originated from", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CaseState" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User", + "ContactPerson" + ], + "name": "ReportedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Reported By", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportedByMail", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Reported By Email", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GeographicalRegion" + ], + "name": "GeographicalRegion", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Geographical Region", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Countries" + ], + "name": "Country", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Country", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CountryState" + ], + "name": "StateProvince", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State/Province", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Document" + ], + "name": "DefaultIntegrationPath", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Default Integration Path", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SfExternalId", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SfExternalName", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ZdExternalId", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Zendesk ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ZdExternalName", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Zendesk Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "Contracts", + "label": "Contracts", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseContractLink", + "relatedTypeName": "Contract", + "sourceFieldName": "Case" + }, + { + "name": "ContractPurchaseOrders", + "label": "Contract Purchase Orders", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseContractPurchaseOrderLink", + "relatedTypeName": "ContractPurchaseOrder", + "sourceFieldName": "Case" + }, + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Groups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Group", + "sourceFieldName": "Entity" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "IssueAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "AttachedPosts", + "label": "V5 Posts", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Post", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseCustomerLink", + "relatedTypeName": "Customer", + "sourceFieldName": "Entity" + }, + { + "name": "AllTeamMembers", + "label": "Team And Subscribers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "WorkItems", + "label": "Work Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Case" + }, + { + "name": "Team", + "label": "Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "IssueTeamMembers", + "relatedTypeName": "User", + "sourceFieldName": "Case" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicCaseLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "AdditionalObjectProperties", + "label": "Overview", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "AdditionalObjectProperties", + "sourceFieldName": "RelatedItem" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + } + ] + }, + { + "typeName": "Case", + "label": "Cases", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 1950, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompleted", + "type": "Double", + "filterable": true, + "sortable": true, + "manuallySetName": "PercentCompletedManuallySet", + "presentationType": "Numeric", + "label": "% Complete", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PercentCompletedManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "% Complete Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PostsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of V5 Posts", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Title", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Title", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Severity" + ], + "name": "Severity", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Value", + "includeDataFields": false + }, + "flags": [], + "presentationType": "PickList", + "label": "Importance", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Priority", + "type": "Integer", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Priority", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Mandatory", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Mandatory", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "Owner", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DueDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Due date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "AssignedTo", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Assigned to", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AssignmentDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Assignment date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "SubmittedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Submitted by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SubmissionDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Submission date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "EvaluatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Evaluated by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "EvaluationDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Evaluation date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "OpenedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Opened by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "OpeningDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Date Opened", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "ResolvedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resolved by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ResolvedDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Resolved date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ResolutionDetails", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Resolution Details", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "ClosedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Closed by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ClosureDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Closed date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "RejectedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Rejected by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "RejectionDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Rejection date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RejectDetails", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Reject details", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "ReopenedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Reopened by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReopeningDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reopened date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ReopenReasons", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Reopen reasons", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "DeferredBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Deferred by", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DeferringDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Deferred date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Comment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Comment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GenericProject" + ], + "name": "PlannedFor", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Resolved In", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportedbyCustomer", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Reported by Customer", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Category", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Category", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DuplicateTo", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Duplicate To", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlainText", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "PlainText of Description", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DeferReasons", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Defer reasons", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Work", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "WorkManuallySet", + "presentationType": "Duration", + "label": "Work", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ActualEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Actual Effort", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffort", + "type": "Duration", + "filterable": true, + "sortable": true, + "manuallySetName": "RemainingEffortManuallySet", + "presentationType": "Duration", + "label": "Remaining Effort", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "WorkManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RemainingEffortManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Remaining Effort Manually Set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkVariance", + "type": "Duration", + "filterable": true, + "sortable": true, + "presentationType": "Duration", + "label": "Work Variance", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Justification", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Justification", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BusinessAlignment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Business Alignment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "PlannedSavings", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Planned Savings", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedBusinessValue", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Expected Business Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "GoalsAchieved", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Goals achieved", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExpectedROI", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Expected ROI", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CaseBusinessImpact" + ], + "name": "BusinessImpact", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Business Impact", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Score", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Total Score", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 1, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "PlanningComponent", + "Project" + ], + "name": "OriginatedFrom", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Originated from", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ObjectAlias", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Url", + "label": "Alias", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CaseState" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User", + "ContactPerson" + ], + "name": "ReportedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Reported By", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportedByMail", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Reported By Email", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GeographicalRegion" + ], + "name": "GeographicalRegion", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Geographical Region", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Countries" + ], + "name": "Country", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Country", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CountryState" + ], + "name": "StateProvince", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State/Province", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Document" + ], + "name": "DefaultIntegrationPath", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Default Integration Path", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Groups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCaseLink", + "relatedTypeName": "Group", + "sourceFieldName": "Entity" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "IssueAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "AttachedPosts", + "label": "V5 Posts", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Post", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "Customers", + "label": "Customers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseCustomerLink", + "relatedTypeName": "Customer", + "sourceFieldName": "Entity" + }, + { + "name": "AllTeamMembers", + "label": "Team And Subscribers", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "WorkItems", + "label": "Work Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "RelatedWork", + "relatedTypeName": "WorkItem", + "sourceFieldName": "Case" + }, + { + "name": "Team", + "label": "Team Members", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "IssueTeamMembers", + "relatedTypeName": "User", + "sourceFieldName": "Case" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicCaseLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "AdditionalObjectProperties", + "label": "Overview", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "AdditionalObjectProperties", + "sourceFieldName": "RelatedItem" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Contracts", + "label": "Contracts", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseContractLink", + "relatedTypeName": "Contract", + "sourceFieldName": "Case" + }, + { + "name": "ContractPurchaseOrders", + "label": "Contract Purchase Orders", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseContractPurchaseOrderLink", + "relatedTypeName": "ContractPurchaseOrder", + "sourceFieldName": "Case" + } + ] + }, + { + "typeName": "FavoriteLink", + "label": "Favorite", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "User", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 1", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4207", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Expense", + "label": "Expense", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Description", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItem" + ], + "name": "WorkItem", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Work Item", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseCategory" + ], + "name": "Category", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Expense Category", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DateIncurred", + "type": "Date", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Date", + "label": "Date Incurred", + "defaultValue": "2026-06-02T00:00:00.0000000", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DateInvoiced", + "type": "Date", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Date", + "label": "Date Invoiced", + "defaultValue": "2026-06-02T00:00:00.0000000", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LocalAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Currency", + "label": "Local Amount", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BillingAmount", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Billing Amount", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ExchangeRate", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Exchange Rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 6, + "_type": "FieldDescription" + }, + { + "name": "Billable", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Billable", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Receipt", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Receipt", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Reimburse", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Reimburse", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Comment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Comment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExpenseSheet" + ], + "name": "ExpenseSheet", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Expense Sheet", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Amount", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Currency", + "label": "Amount", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Charged", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Charged", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4208", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ExpenseEntryAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicExpenseEntryLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + } + ] + }, + { + "typeName": "ExpenseSheet", + "label": "Expense Sheet", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "flags": [], + "presentationType": "Text", + "label": "Description", + "defaultValue": "Expense Sheet for 02/06/26", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Owner", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Owner", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "ApprovedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Approved by", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ApprovalDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Approval date", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Project" + ], + "name": "Project", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Default Project", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "PostsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of V5 Posts", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Date", + "type": "Date", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Date", + "label": "Date", + "defaultValue": "2026-06-02T00:00:00.0000000", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Total", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Total", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "ReimbursedTotal", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Reimbursed Total", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "BillableTotal", + "type": "Money", + "filterable": true, + "sortable": true, + "presentationType": "Currency", + "label": "Billable Total", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "SubmittedOn", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Submitted On", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Approver", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Approver", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4209", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Draft", + "Name": "Draft" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [ + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ExpenseSheetAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "AttachedPosts", + "label": "V5 Posts", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "Post", + "sourceFieldName": "AttachedTo" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "Expenses", + "label": "Expenses", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Expense", + "sourceFieldName": "ExpenseSheet" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicExpenseSheetLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + } + ] + }, + { + "typeName": "CurrencyExchangeRate", + "label": "Currency Exchange Rate", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItem", + "CurrencyExchangeRateCard" + ], + "name": "WorkItem", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "BaseCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Base Currency", + "defaultValue": { + "id": "/CurrencyType/BRL", + "Name": "BRL" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "QuoteCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Quote Currency", + "defaultValue": { + "id": "/CurrencyType/USD", + "Name": "USD" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "EffectiveFrom", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Effective from", + "defaultValue": "1000-01-01T00:00:00.0000000", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExchangeRate", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Exchange Rate", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 6, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4210", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "EmailRecipient", + "label": "Email Recipient", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "ContactPerson", + "UserGroup", + "DiscussionGroup" + ], + "name": "Recipient", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Recipient", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "EmailAddress", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Recipient Email", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "RecipientType" + ], + "name": "RecipientType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Recipient Type", + "defaultValue": { + "id": "/RecipientType/To", + "Name": "To" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Email", + "Organization" + ], + "name": "Email", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Email", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4211", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CustomerLink", + "label": "Project Customer Link", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Customer", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Customer", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4212", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CostAllocation", + "type": "Double", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Cost Allocation (%)", + "defaultValue": 100, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "ContactPerson", + "label": "Contact Person", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4213", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Customer" + ], + "name": "Customer", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Customer", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "FaxNumber", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Fax Number", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "MainContact", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Main contact", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "FirstName", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "First Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SfExternalId", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastName", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Last Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Email", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Email", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SfExternalName", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "OfficePhone", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Office Phone", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "MobilePhone", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Mobile Phone", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Title", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Title", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Department", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Department", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "TimeZone" + ], + "name": "TimeZone", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "Time Zone", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastDateContacted", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last date contacted", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "URL", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 4096, + "presentationType": "Text", + "label": "External profile URL", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.40887.0-A3611DCDE764C329334C7DB793A72332D5B4E397/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "RecipientOfEmails", + "label": "Recipient Of Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "EmailRecipient", + "sourceFieldName": "Recipient" + } + ] + }, + { + "typeName": "Customer", + "label": "Customer", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Customer Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 1600, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4214", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Active", + "Name": "Active" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "BusinessAddress", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 1024, + "presentationType": "Text", + "label": "Business Address", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BillingAddress", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 1024, + "presentationType": "Text", + "label": "Billing Address", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "SYSID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "ID", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "InternalId", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Internal Customer ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "Owner", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Account Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SfExternalId", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "AccountStatus" + ], + "name": "AccountStatus", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Account Status", + "defaultValue": { + "id": "/AccountStatus/Lead", + "Name": "Lead" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SfExternalName", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "SalesForce Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": true, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Tier" + ], + "name": "Tier", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Tier", + "defaultValue": { + "id": "/Tier/Tier 1", + "Name": "Tier 1" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Industry" + ], + "name": "Industry", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Industry", + "defaultValue": { + "id": "/Industry/Accounting", + "Name": "Accounting" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastDateContacted", + "type": "Date", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last date contacted", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CustomerValue", + "type": "Money", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Customer Value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "URL", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 4096, + "presentationType": "Url", + "label": "Website URL", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Region" + ], + "name": "Region", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Region", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "MarketingSource", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 2048, + "presentationType": "Text", + "label": "Marketing Source", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "TechnicalAccountManager", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Technical Account Manager", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CustomerSuccessStatus" + ], + "name": "CustomerSuccessStatus", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Customer Success Status", + "defaultValue": { + "id": "/CustomerSuccessStatus/On Boarding", + "Name": "On Boarding" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CompanySize" + ], + "name": "CompanySize", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Company Size", + "defaultValue": { + "id": "/CompanySize/1-10", + "Name": "1-10" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "OfficePhone", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Phone", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AttachmentsCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Attachments", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LikesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Likes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EmailsCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Emails", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.6517.0-55A721930ED2653FDF0FE9DA971CA8878ED9484B/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "GeographicalRegion" + ], + "name": "GeographicalRegion", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Geographical Region", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Countries" + ], + "name": "Country", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Country", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CountryState" + ], + "name": "StateProvince", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "State/Province", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "EntityOwner", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Entity Owner", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": false, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "DefaultIntegrationPath", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 2000, + "presentationType": "Text", + "label": "Default Integration Path", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "NotesCount", + "type": "Integer", + "filterable": false, + "sortable": true, + "format": { + "displayFormat": "Icon", + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "# of Notes", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "DirectFollowers", + "label": "Direct Followers", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Following", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "AttachedEmails", + "label": "Emails", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Email", + "sourceFieldName": "AttachedTo" + }, + { + "name": "AttachedNotes", + "label": "Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Note", + "sourceFieldName": "AttachedTo" + }, + { + "name": "Documents", + "label": "Files", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CustomerAttachmentLink", + "relatedTypeName": "Document", + "sourceFieldName": "Entity" + }, + { + "name": "Groups", + "label": "Groups", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "GroupCustomerLink", + "relatedTypeName": "Group", + "sourceFieldName": "Entity" + }, + { + "name": "Projects", + "label": "Projects", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CustomerLink", + "relatedTypeName": "Project", + "sourceFieldName": "Customer" + }, + { + "name": "Issues", + "label": "Cases", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "CaseCustomerLink", + "relatedTypeName": "Case", + "sourceFieldName": "Customer" + }, + { + "name": "LikedBy", + "label": "Liked By", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Like", + "relatedTypeName": "User", + "sourceFieldName": "Entity" + }, + { + "name": "Followers", + "label": "Followers", + "roleLabel": "", + "readOnly": true, + "relatedTypeName": "User" + }, + { + "name": "Contacts", + "label": "Contacts", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "ContactPerson", + "sourceFieldName": "Customer" + }, + { + "name": "Discussions", + "label": "Discussions", + "roleLabel": "", + "readOnly": true, + "linkTypeName": "", + "relatedTypeName": "DiscussionPost", + "sourceFieldName": "Entity" + }, + { + "name": "Topics", + "label": "Topics", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "TopicCustomerLink", + "relatedTypeName": "Topic", + "sourceFieldName": "Entity" + }, + { + "name": "Contracts", + "label": "Contracts", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Contract", + "sourceFieldName": "Customer" + }, + { + "name": "ContractPurchaseOrders", + "label": "Contract Purchase Orders", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "ContractPurchaseOrder", + "sourceFieldName": "Customer" + }, + { + "name": "DataObjects", + "label": "DataObjects", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Data", + "sourceFieldName": "SourceObject" + }, + { + "name": "AdditionalObjectProperties", + "label": "Overview", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "AdditionalObjectProperties", + "sourceFieldName": "RelatedItem" + }, + { + "name": "ActionItems", + "label": "Action Items", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "ActionItemLink", + "relatedTypeName": "ActionItem", + "sourceFieldName": "RelatedTo" + }, + { + "name": "PermisionDefinitions", + "label": "Permission Definitions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "Permission", + "relatedTypeName": "ResourceEntity", + "sourceFieldName": "Entity" + }, + { + "name": "RateCards", + "label": "Rate Cards", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "RateCard", + "sourceFieldName": "Customer" + }, + { + "name": "MeetingNotes", + "label": "Meeting Notes", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "MeetingNote", + "sourceFieldName": "Container" + }, + { + "name": "Decisions", + "label": "Decisions", + "roleLabel": "", + "readOnly": false, + "linkTypeName": "DecisionLink", + "relatedTypeName": "Decision", + "sourceFieldName": "RelatedTo" + } + ] + }, + { + "typeName": "Rate", + "label": "Rate", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4215", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "JobAssetType", + "GroupJobAssetType", + "ResourceLink", + "User", + "Asset", + "Organization", + "RateCardItem", + "UserGroup", + "BusinessUnit" + ], + "name": "RateFor", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Job Title", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "RateType" + ], + "name": "RateType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Rate type", + "defaultValue": { + "id": "/RateType/Cost", + "Name": "Cost" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "EffectiveFrom", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Effective from", + "defaultValue": "1000-01-01T00:00:00.0000000", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EffectiveTo", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Effective to", + "defaultValue": "9000-01-01T00:00:00.0000000", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RegularRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "Regular hourly rate", + "defaultValue": { + "currency": "BRL", + "value": 0 + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "OvertimeRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "Overtime hourly rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Comment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Comment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "RateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "IconValue", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "RateCardVersion" + ], + "name": "RateCardVersion", + "type": "Entity", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Rate Card Version", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CurrencyExchangeDate", + "type": "Date", + "filterable": true, + "sortable": true, + "manuallySetName": "CurrencyExchangeDateManuallySet", + "presentationType": "Date", + "label": "Currency Exchange Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "CurrencyExchangeDateManuallySet", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Currency Exchange Date is manually set", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Timesheet", + "label": "Timesheet", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4216", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "defaultValue": { + "id": "/State/Approved", + "Name": "Approved" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "ApprovedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Approved by", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ApprovalDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Approval date", + "defaultValue": "2026-06-02T17:04:55.2808635Z", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User", + "Asset" + ], + "name": "ReportedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Reported By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ReportedDate", + "type": "Date", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Reported Date", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Duration", + "type": "Duration", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "presentationType": "Other", + "label": "Duration", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RegularHours", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Regular Hours", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Comment", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Comment", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BillingRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Billing Rate per hour used in this item", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Cost", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Cost of the item", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "WorkItem" + ], + "name": "WorkItem", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Work Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CostRate", + "type": "Money", + "filterable": true, + "sortable": true, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Cost Rate per hour used in this item", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "Price", + "type": "Money", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Currency", + "label": "Price of the item", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Charged", + "type": "Boolean", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Charged", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CreatorType" + ], + "name": "CreatorType", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Creator Type", + "defaultValue": { + "id": "/CreatorType/TimeTracking", + "Name": "TimeTracking" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "RegularResourceLink" + ], + "name": "HumanResource", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Human Resource", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "Overtime", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Overtime", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "AssignedApprover", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Assigned Approver", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "DisableReportingTimeLimit", + "type": "Boolean", + "filterable": false, + "sortable": true, + "presentationType": "Checkbox", + "label": "Disable Reporting Time Limit", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "Project" + ], + "name": "Project", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Project", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "JobAssetType" + ], + "name": "UserJobTitle", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "User Job Title", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "JobAssetType" + ], + "name": "UsedJobTitleCost", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Job Title For Cost", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "JobAssetType" + ], + "name": "UsedJobTitleBilling", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "ReferenceToObject", + "label": "Job Title For Billing", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CostDirectRateHolderRate", + "type": "Boolean", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Cost rate assigned directly to Rate Holder", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "BillingDirectRateHolderRate", + "type": "Boolean", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Billing rate assigned directly to Rate Holder", + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastSubmittedDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Submitted Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RejectionNote", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": 2000, + "presentationType": "TextArea", + "label": "Rejection Note", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "RejectionDate", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Rejection Date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "RejectedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Rejected By", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CalendarException", + "label": "Calendar Exception", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4217", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "WorkingDay", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Is Working", + "defaultValue": true, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "StartDate", + "type": "Date", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Date", + "label": "Start date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "EndDate", + "type": "Date", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Date", + "label": "End date", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "AllDay", + "type": "Boolean", + "filterable": true, + "sortable": true, + "presentationType": "Checkbox", + "label": "Is All Day", + "defaultValue": false, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "ExceptionType" + ], + "name": "ExceptionType", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Exception Type", + "defaultValue": { + "id": "/ExceptionType/Personal", + "Name": "Personal" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Organization", + "User", + "UserGroup", + "Project" + ], + "name": "EventCalendar", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Event Calendar", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Organization", + "label": "Organization", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 64, + "presentationType": "Text", + "label": "External ID", + "defaultValue": "4niecg05efbynzttkgi8qalxp4218", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "State" + ], + "name": "State", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Organization State", + "defaultValue": { + "id": "/State/Active", + "Name": "Active" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Countries" + ], + "name": "Country", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Country", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "TimeZone" + ], + "name": "TimeZone", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Time Zone", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CountryState" + ], + "name": "CountryState", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "State", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "CurrencyType" + ], + "name": "DefaultCurrency", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Currency Type", + "defaultValue": { + "id": "/CurrencyType/USD", + "Name": "USD" + }, + "system": false, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Language" + ], + "name": "Language", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Organization Language", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Domain", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Domain", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "SupportUser", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Default Support User", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Package" + ], + "name": "Package", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Package Type", + "defaultValue": { + "id": "/Package/Enterprise", + "Name": "Enterprise" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "DefaultWorkflowUser", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Default Workflow User", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "UpdateRequestsCounter", + "type": "Long", + "filterable": true, + "sortable": true, + "presentationType": "Numeric", + "label": "Update requests counter", + "defaultValue": 0, + "system": false, + "calculated": true, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "LandingPage" + ], + "name": "LandingPage", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "PickList", + "label": "Landing Page", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CostRegularRate", + "type": "Money", + "filterable": false, + "sortable": false, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Cost Regular Hourly Rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CostOvertimeRate", + "type": "Money", + "filterable": false, + "sortable": false, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Cost Overtime Hourly Rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueRegularRate", + "type": "Money", + "filterable": false, + "sortable": false, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Billing Regular Hourly Rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "RevenueOvertimeRate", + "type": "Money", + "filterable": false, + "sortable": false, + "format": { + "displayUnit": "None", + "convertManuallySetData": false, + "trailingZeros": false, + "showZero": true, + "includeDataFields": false + }, + "flags": [], + "presentationType": "Currency", + "label": "Billing Overtime Hourly Rate", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 2, + "_type": "FieldDescription" + }, + { + "name": "CustomCss", + "type": "String", + "filterable": true, + "sortable": false, + "maxLength": -1, + "presentationType": "TextArea", + "label": "Custom CSS", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.49.0-706E7CAADFC3B80C214965CDB9F99D0905472743/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "CustomIcon" + ], + "name": "CustomIcon", + "type": "Entity", + "filterable": true, + "sortable": true, + "flags": [], + "presentationType": "PickList", + "label": "Custom Icon", + "defaultValue": { + "id": "/CustomIcon/External system page", + "Name": "External system page" + }, + "system": false, + "calculated": false, + "nullable": true, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Profile" + ], + "name": "Profile", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Profile", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [ + "Profile" + ], + "name": "MobileProfile", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Mobile Profile", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "UserSyncUpdated", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "User Sync Updated", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "CostRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Cost Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "BillingRateUsed", + "type": "Entity", + "filterable": true, + "sortable": true, + "format": { + "displayFormat": "Icon", + "includeDataFields": false + }, + "presentationType": "ReferenceToObject", + "label": "Billing Rate Used", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "SharepointOnlineUserName", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Sharepoint Online User Name", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [ + { + "name": "AllUsers", + "label": "All Users", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "User" + }, + { + "name": "ErrorNotifications", + "label": "Error Notifications", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "ResourceEntity" + }, + { + "name": "AssignedRates", + "label": "Rates", + "roleLabel": "", + "readOnly": false, + "relatedTypeName": "Rate", + "sourceFieldName": "RateFor" + } + ] + }, + { + "typeName": "TaskType", + "label": "Task Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4219", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "DocumentType", + "label": "Document Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4220", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "Phase", + "label": "Phase", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4221", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "RequestType", + "label": "Request Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4222", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "MilestoneType", + "label": "Milestone Type", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "defaultValue": { + "id": "/User/3yz1tmimal4xceuy6pa7vrl6t633", + "DisplayName": "Leonardo Toniolo" + }, + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Name", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 256, + "presentationType": "Text", + "label": "Name", + "defaultValue": "4niecg05efbynzttkgi8qalxp4223", + "system": true, + "calculated": false, + "nullable": false, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Description", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 512, + "presentationType": "TextArea", + "label": "Description", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Order", + "type": "Integer", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Numeric", + "label": "Value Order", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "IsDefault", + "type": "Boolean", + "filterable": false, + "sortable": true, + "flags": [], + "presentationType": "Checkbox", + "label": "Sign of default value", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Tooltip", + "type": "String", + "filterable": false, + "sortable": true, + "maxLength": 512, + "presentationType": "Text", + "label": "Tooltip", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ImageUrl", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ImageUrl", + "defaultValue": "https://app2.clarizen.com/Clarizen/Media/35.0.0-8FDF73AA4CA1FDEB53410B411484A2EE1A56EEF6/Image.gif", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "Color", + "type": "String", + "filterable": false, + "sortable": false, + "maxLength": 256, + "presentationType": "Text", + "label": "ColorHex", + "defaultValue": "", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "AttachmentLink", + "label": "Attachment", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "Document", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Related Entity 2", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "DiscussionLink", + "label": "Discussion Links", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "DiscussionMessage", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Discussion", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "referencedEntities": [], + "name": "Entity", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item", + "system": false, + "calculated": false, + "nullable": false, + "createOnly": true, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + }, + { + "typeName": "CustomLinkEntity", + "label": "Custom Link Object", + "fields": [ + { + "referencedEntities": [ + "User" + ], + "name": "CreatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Created By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "CreatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Created On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [ + "User" + ], + "name": "LastUpdatedBy", + "type": "Entity", + "filterable": true, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Last Updated By", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "LastUpdatedOn", + "type": "DateTime", + "filterable": true, + "sortable": true, + "presentationType": "Date", + "label": "Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "name": "LastUpdatedBySystemOn", + "type": "DateTime", + "filterable": false, + "sortable": true, + "presentationType": "Date", + "label": "System Last Updated On", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": false, + "decimalPlaces": 0, + "_type": "FieldDescription" + }, + { + "referencedEntities": [], + "name": "EntityType", + "type": "Entity", + "filterable": false, + "sortable": true, + "presentationType": "ReferenceToObject", + "label": "Item Type", + "system": true, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": false, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "EntityFieldDescription" + }, + { + "name": "ExternalID", + "type": "String", + "filterable": true, + "sortable": true, + "maxLength": 40, + "presentationType": "Text", + "label": "External ID", + "system": false, + "calculated": false, + "nullable": true, + "createOnly": false, + "updateable": true, + "internal": false, + "custom": false, + "visible": true, + "decimalPlaces": 0, + "_type": "FieldDescription" + } + ], + "relations": [] + } + ] +} diff --git a/src/generated/metadata-types.ts b/src/generated/metadata-types.ts new file mode 100644 index 0000000..384ada3 --- /dev/null +++ b/src/generated/metadata-types.ts @@ -0,0 +1,1225 @@ +// Auto-generated by npm run scrape:metadata. Do not edit manually. +/* eslint-disable */ + +export const ENTITY_TYPES = [ + "ContractHierarchyLink", + "CaseContractPurchaseOrderLink", + "CaseContractLink", + "ContractPurchaseOrder", + "Contract", + "CustomizationProfilingData", + "Note", + "Post", + "Email", + "Comment", + "CapacityTimeline", + "StaffTimePhasedDataMonthly", + "StaffTimePhasedDataDaily", + "BusinessUnitRestrictedFields", + "RestrictedFieldsSetLink", + "TimelinesRoadmapMilestoneLink", + "BusinessUnitsAccess", + "RestrictedFields", + "BusinessUnit", + "TimelinesRoadmapKeyDate", + "CurrencyExchangeRateCard", + "ObjectiveHierarchyLink", + "TargetHierarchyLink", + "Contribution", + "Objective", + "Target", + "EntityMappingChange", + "ActionItemLink", + "DecisionLink", + "TimelinesRoadmap", + "PrimaryFlagHistory", + "UserStateHistory", + "Decision", + "MeetingAttendee", + "ActionItem", + "MeetingNote", + "PhasingResourceLinkVersion", + "GenericPhasingResourceLinkVersion", + "AssetResourceLinkVersion", + "LaborResourceLinkVersion", + "GenericLaborResourceLinkVersion", + "FixedPriceResourceLinkVersion", + "NonLaborResourceLinkVersion", + "ResourceLinkFinancialVersion", + "MilestoneVersion", + "ProjectVersion", + "WorkItemVersion", + "Versions", + "PhasingResourceTimePhaseVersion", + "GenPhasingResourceTimePhaseVersion", + "AssetResourceTimePhaseVersion", + "LaborResourceTimePhaseVersion", + "GenericLaborResourceTimePhaseVersion", + "FixedPriceResourceTimePhaseVersion", + "NonLaborResourceTimePhaseVersion", + "ResourceTimePhaseVersion", + "PortfolioProjectLink", + "PortfolioProgramLink", + "PortfolioLink", + "Portfolio", + "TimesheetApprovalDelegateLink", + "ApprovalDelegateLink", + "RateCardVersion", + "RateCardItem", + "RateCard", + "IntegrationNewObjFieldValue", + "IntegrationEventDefRelation", + "IntegrationEventSyncCondition", + "EmploymentHistory", + "UCTimePhaseMonthly", + "UCTimePhaseDaily", + "UCTimePhase", + "RLTimePhaseMonthly", + "RLTimePhaseDaily", + "RLTimePhase", + "ResourceRequestSkillLink", + "ResourceRequest", + "RRTimePhase", + "Template", + "NonLaborPhasingResource", + "LaborPhasingResource", + "FixedPricePhasingResource", + "AssetPhasingResource", + "PhasingResource", + "FixedPriceResource", + "NonLaborResource", + "User", + "UserPlaceholder", + "GenericUser", + "AssetPlaceholder", + "Asset", + "GenericAsset", + "WorkingEntity", + "Profile", + "AssetType", + "JobTitle", + "JobAssetType", + "GroupAssetType", + "JobTitleInGroup", + "GroupJobAssetType", + "DiscussionGroup", + "UserGroup", + "Group", + "Skill", + "ResourceGroupEntity", + "ResourceEntity", + "GenericResourceEntity", + "FileTemplate", + "Document", + "BaseFile", + "PhasingResourceLinkDirect", + "PhasingResourceLinkAggregated", + "PhasingResourceLink", + "GenericPhasingResourceLink", + "AssetResourceLinkAggregated", + "AssetResourceLinkDirect", + "AssetResourceLink", + "LaborResourceLinkAggregated", + "LaborResourceLinkDirect", + "LaborResourceLink", + "GenericLaborResourceLink", + "FixedPriceResourceLinkAggregated", + "FixedPriceResourceLinkDirect", + "FixedPriceResourceLink", + "NonLaborResourceLinkAggregated", + "NonLaborResourceLinkDirect", + "NonLaborResourceLink", + "ResourceLinkFinancial", + "PhasingResourceTimePhase", + "GenericPhasingResourceTimePhase", + "AssetResourceTimePhase", + "LaborResourceTimePhase", + "GenericLaborResourceTimePhase", + "FixedPriceResourceTimePhase", + "NonLaborResourceTimePhase", + "ResourceTimePhase", + "LaborResourceSnapshot", + "AdditionalObjectProperties", + "PushNotification", + "Data", + "WorkByDay", + "ResourceCalendarExceptionAbsolute", + "ResourceCalendarExceptionRelative", + "ResourceCalendarException", + "ReportShortcutLink", + "ReportsHierarchyLink", + "ReportsFolderContentLink", + "FolderContentLink", + "Dashboard", + "Report", + "ReportAndDashboard", + "FolderForReport", + "FoldersAndReports", + "Permission", + "DependencyLink", + "IntegrationsRegistry", + "TopicDocumentLink", + "TopicDiscussionLink", + "TopicGroupLink", + "TopicExpenseEntryLink", + "TopicExpenseSheetLink", + "TopicCustomerLink", + "TopicCaseLink", + "TopicWorkItemLink", + "TopicLink", + "Milestone", + "Task", + "RecurringTask", + "GenericTask", + "PlanningComponent", + "Project", + "Program", + "GenericProject", + "WorkItem", + "Topic", + "Following", + "Like", + "ContractPurchaseOrderDiscussionLink", + "ContractDiscussionLink", + "DecisionDiscussionLink", + "ActionItemDiscussionLink", + "ContributionDiscussionLink", + "ObjectiveDiscussionLink", + "TargetDiscussionLink", + "PortfolioDiscussionLink", + "NLRDiscussionLink", + "ReportDiscussionLink", + "UserReportDiscussionLink", + "SystemReportDiscussionLink", + "ExpenseEntryDiscussionLink", + "ExpenseSheetDiscussionLink", + "CustomerDiscussionLink", + "CaseDiscussionLink", + "WorkItemDiscussionLink", + "DiscussionReply", + "DiscussionPost", + "DiscussionMessage", + "GroupTaskLink", + "GroupProjectLink", + "GroupCaseLink", + "GroupCustomerLink", + "GroupLink", + "RecycleBinItems", + "Stopwatch", + "ResourceManagerLink", + "ProfileLink", + "SubGroupHierarchyLink", + "GroupMembershipLink", + "GroupHierarchyLink", + "SkillLink", + "MembershipLink", + "ContractPurchaseOrderAttachmentLink", + "ContractAttachmentLink", + "AssetAttachmentLink", + "BusinessUnitAttachmentLink", + "ContributionAttachmentLink", + "ObjectiveAttachmentLink", + "TargetAttachmentLink", + "DecisionAttachmentLink", + "ActionItemAttachmentLink", + "MeetingNoteAttachmentLink", + "PortfolioAttachmentLink", + "NLRAttachmentLink", + "WorkItemAttachmentLink", + "DashboardAttachmentLink", + "ReportAttachmentLink", + "UserAttachmentLink", + "ExpenseSheetAttachmentLink", + "CustomerAttachmentLink", + "DiscussionMessageAttachmentLink", + "ResourceGroupEntityAttachmentLink", + "IssueAttachmentLink", + "ExpenseEntryAttachmentLink", + "AdditionalManagerLink", + "OwnerLink", + "ManagerResourceLink", + "RegularResourceLink", + "ReviewerLink", + "WorkItemTeamLink", + "JobTitleRateLink", + "ResourceLink", + "ProgressImpactLink", + "RealWorkItemHierarchyLink", + "ShortcutLink", + "BaseWorkItemHierarchyLink", + "WorkItemHierarchyLink", + "BusinessRuleError", + "SchedulingType", + "UnitOfMeasure", + "CurrencyType", + "ScoreRank", + "ContractStatus", + "ContractState", + "ContractSize", + "ContractType", + "PhasingState", + "SentimentStatus", + "RestrictedBusinessUnitSource", + "RestrictedFieldsSet", + "ExpectedTimesheets", + "UpdateForecastDefault", + "NLRExchangeRateDateOption", + "PermissionInheritanceForExternalUsers", + "TargetUnitScale", + "TargetCurrencyType", + "TargetUnitType", + "TargetStatus", + "TargetType", + "TargetState", + "DecisionState", + "MeetingAttendeeState", + "ActionItemState", + "MeetingNoteState", + "LoginType", + "PortfolioState", + "PortfolioType", + "ClarizenGoBoardType", + "ProjectBillingType", + "TimeApproval", + "NLRRescheduleMode", + "ClarizenGoStatus", + "ZiflowProofAlert", + "AuditAction", + "TrackStatus", + "CustomObjectIcons", + "TemplateCategory", + "GeoLocation", + "TemplateItemType", + "LaborBudgetPickup", + "ExpenseType", + "NonLaborResourceLinkCategory", + "ReportingPeriodPickup", + "GeographicalRegion", + "ResourceUtilizationCategory", + "InvestmentType", + "PackagedObjectCategory", + "NotifyUsers", + "EditorsMode", + "ManagerRole", + "DataObjectType", + "NumericFormat", + "Role", + "DashboardStatus", + "UserShortcut", + "IntegrationAuthenticationType", + "AuthorizationGroup", + "CustomIcon", + "ProofAlert", + "ProofRole", + "TriggeredBy", + "SyncStatus", + "ReplyMarkedType", + "CompanySize", + "CustomerSuccessStatus", + "Industry", + "Tier", + "AccountStatus", + "LicenseType", + "LandingPage", + "StorageType", + "ShortDateFormat", + "ConflictType", + "ProjectSize", + "PostState", + "PostType", + "DiscussionEmailNotifications", + "CompletenessRole", + "SpecialRole", + "FileType", + "WidgetType", + "CreatorType", + "StopwatchAggregateState", + "CommentType", + "StopwatchState", + "Region", + "Package", + "CaseBusinessImpact", + "State", + "TaskReportingPolicy", + "CaseState", + "ChargedType", + "RiskImpact", + "RisksRate", + "BusinessImpact", + "ExceptionType", + "ObjectAccessType", + "Months", + "WeekDays", + "RiskState", + "DependencyType", + "Pending", + "Severity", + "ExpenseCategory", + "WorkPolicy", + "RecipientType", + "RateType", + "ResourceRole", + "Importance", + "Language", + "RecurrenceType", + "CommitLevel", + "CountryState", + "ReportExtensionType", + "ProjectType", + "BudgetStatus", + "Countries", + "ImportedFrom", + "TimeZone", + "Widget", + "CaseCustomerLink", + "IssueTeamMembers", + "RelatedWork", + "EnhancementRequest", + "Bug", + "Risk", + "Issue", + "Case", + "FavoriteLink", + "Expense", + "ExpenseSheet", + "CurrencyExchangeRate", + "EmailRecipient", + "CustomerLink", + "ContactPerson", + "Customer", + "Rate", + "Timesheet", + "CalendarException", + "Organization", + "TaskType", + "DocumentType", + "Phase", + "RequestType", + "MilestoneType", + "AttachmentLink", + "DiscussionLink", + "CustomLinkEntity", +] as const; + +export type EntityTypeName = (typeof ENTITY_TYPES)[number]; + +export const FIELDS_BY_ENTITY = { + ContractHierarchyLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Parent", "Child", "ExternalID"] as const, + CaseContractPurchaseOrderLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Case", "ContractPurchaseOrders", "ExternalID"] as const, + CaseContractLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Case", "Contract", "ExternalID"] as const, + ContractPurchaseOrder: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "SYSID", "EntityOwner", "ContractPOState", "ContractPOStatus", "StartDate", "DueDate", "BusinessImpact", "ClosingNotes", "ExpectedBusinessValue", "GoalsAchieved", "HoldingNotes", "InternalId", "InternalStatus", "Mitigation", "OverallSummary", "Manager", "Risks", "ContractSize", "ProjectGoals", "PurchaseOrderType", "StatusChangedOn", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "Customer", "ObjectAlias", "Contract", "WorkItem", "Phase", "ChargedType", "CommitLevel", "DeliverableType", "GeographicalRegion", "Country", "StateProvince", "Importance", "Priority", "AttachmentsCount", "CasesCount", "NotesCount", "EmailsCount"] as const, + Contract: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "SYSID", "EntityOwner", "ContractState", "ContractStatus", "StartDate", "DueDate", "BusinessImpact", "Charged", "ClosingNotes", "CommitLevel", "DeliverableType", "ExpectedBusinessValue", "HoldingNotes", "GoalsAchieved", "Rollup", "Importance", "InternalId", "InternalStatus", "Mitigation", "OverallSummary", "Manager", "Phase", "Risks", "Priority", "ProjectGoals", "ContractManager", "ContractSponsor", "ContractSize", "ContractType", "StatusChangedOn", "SoftraxIntegration", "RevRecMethod", "ParentContract", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "Customer", "GeographicalRegion", "Country", "StateProvince", "ObjectAlias", "PlannedRevenue", "ActualRevenue", "RevenueCurrencyType", "RevenueCurrencyTypeManuallySet", "CostCurrencyTypeManuallySet", "AttachmentsCount", "CasesCount", "SubContractsCount", "NotesCount", "EmailsCount", "PlannedRevenueManuallySet", "ActualRevenueManuallySet", "RecognizedForecastRevenueManuallySet"] as const, + CustomizationProfilingData: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "SourceObject", "PerformanceData", "Comment", "LoggedOrganizationTime", "CollectorOrganizationTime", "Corellations"] as const, + Note: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Comment", "PlainText", "AttachedTo", "ExternalID", "Visibility", "LastUpdatedBySystemOn", "EntityType", "NotesCount", "EntityOwner", "RelatedDate"] as const, + Post: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Comment", "PlainText", "AttachedTo", "ExternalID", "Visibility", "LastUpdatedBySystemOn", "EntityType", "NotesCount", "EntityOwner", "From", "Recipient"] as const, + Email: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Subject", "Comment", "PlainText", "AttachedTo", "ExternalID", "Visibility", "LastUpdatedBySystemOn", "EntityType", "NotesCount", "EntityOwner", "SentBy"] as const, + Comment: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Comment", "PlainText", "AttachedTo", "ExternalID", "Visibility", "LastUpdatedBySystemOn", "EntityType", "NotesCount", "EntityOwner"] as const, + CapacityTimeline: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "EffectiveFrom", "EffectiveTo", "CapacityFor", "Comment"] as const, + StaffTimePhasedDataMonthly: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "State", "ExternalID", "Date", "Project", "Billable", "ExpenseType", "Work", "WorkBillable", "WorlkNonBillable", "ProjectAssignment", "ProjectAssignmentBillable", "ProjectAssignmentNonBillable", "ActualApproved", "ActualApprovedRegular", "ActualApprovedOvertime", "ActualPending", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Work_None", "ProjectAssignment_None", "ActualApproved_None", "ResourceUtilizationCategory", "WorkOpex", "WorkCapex", "ProjectAssignmentOpex", "ProjectAssignmentCapex", "ActualApprovedBillable", "ActualApprovedNonBillable", "ActualApprovedOpex", "ActualApprovedCapex", "ActualApprovedRegularBillable", "ActualApprovedRegularNonBillable", "ActualApprovedRegularOpex", "ActualApprovedRegularCapex", "ActualApprovedOvertimeBillable", "ActualApprovedOvertimeNonBillable", "ActualApprovedOvertimeOpex", "ActualApprovedOvertimeCapex", "ActualPendingBillable", "ActualPendingNonBillable", "ActualPendingOpex", "ActualPendingCapex", "PlannedBudgetBillable", "PlannedBudgetNonBillable", "PlannedBudgetOpex", "PlannedBudgetCapex", "PlannedBudget_None", "PlannedRevenueBillable", "PlannedRevenueNonBillable", "PlannedRevenueOpex", "PlannedRevenueCapex", "PlannedRevenue_None", "ActualCostBillable", "ActualCostNonBillable", "ActualCostOpex", "ActualCostCapex", "ActualCost_None", "ActualRevenueBillable", "ActualRevenueNonBillable", "ActualRevenueOpex", "WorkOriginal", "ActualRevenueCapex", "WorkBillableOriginal", "ActualRevenue_None", "WorkNonBillableOriginal", "WorkOpexOriginal", "workCapexOriginal", "WorkForecast", "WorkBillableForecast", "WorkNonBillableForecast", "WorkOpexForecast", "WorkCapexForecast", "OriginalCost", "TaskAssignmentOrig_None", "OriginalRevenue", "TaskAssignmentForecast_None", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance", "FiscalMonth", "Description", "Group", "GeoLocation", "Language", "ProjectRole", "RequestedWork", "RelatedResourceRequest", "ReportingPeriod"] as const, + StaffTimePhasedDataDaily: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "State", "ExternalID", "Date", "Project", "Billable", "ExpenseType", "Work", "WorkBillable", "WorlkNonBillable", "ProjectAssignment", "ProjectAssignmentBillable", "ProjectAssignmentNonBillable", "ActualApproved", "ActualApprovedRegular", "ActualApprovedOvertime", "ActualPending", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Work_None", "ProjectAssignment_None", "ActualApproved_None", "ResourceUtilizationCategory", "WorkOpex", "WorkCapex", "ProjectAssignmentOpex", "ProjectAssignmentCapex", "ActualApprovedBillable", "ActualApprovedNonBillable", "ActualApprovedOpex", "ActualApprovedCapex", "ActualApprovedRegularBillable", "ActualApprovedRegularNonBillable", "ActualApprovedRegularOpex", "ActualApprovedRegularCapex", "ActualApprovedOvertimeBillable", "ActualApprovedOvertimeNonBillable", "ActualApprovedOvertimeOpex", "ActualApprovedOvertimeCapex", "ActualPendingBillable", "ActualPendingNonBillable", "ActualPendingOpex", "ActualPendingCapex", "PlannedBudgetBillable", "PlannedBudgetNonBillable", "PlannedBudgetOpex", "PlannedBudgetCapex", "PlannedBudget_None", "PlannedRevenueBillable", "PlannedRevenueNonBillable", "PlannedRevenueOpex", "PlannedRevenueCapex", "PlannedRevenue_None", "ActualCostBillable", "ActualCostNonBillable", "ActualCostOpex", "ActualCostCapex", "ActualCost_None", "ActualRevenueBillable", "ActualRevenueNonBillable", "ActualRevenueOpex", "WorkOriginal", "ActualRevenueCapex", "WorkBillableOriginal", "ActualRevenue_None", "WorkNonBillableOriginal", "WorkOpexOriginal", "workCapexOriginal", "WorkForecast", "WorkBillableForecast", "WorkNonBillableForecast", "WorkOpexForecast", "WorkCapexForecast", "OriginalCost", "TaskAssignmentOrig_None", "OriginalRevenue", "TaskAssignmentForecast_None", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance", "Description", "Group", "GeoLocation", "Language", "ProjectRole", "RequestedWork", "RelatedResourceRequest", "ReportingPeriod"] as const, + BusinessUnitRestrictedFields: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "RestrictedFieldsSetLink", "BusinessUnit", "ExternalID"] as const, + RestrictedFieldsSetLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "MemberEntity", "RestrictedFieldsSet", "ExternalID"] as const, + TimelinesRoadmapMilestoneLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "TimelinesRoadmap", "Milestone", "ExternalID"] as const, + BusinessUnitsAccess: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "User", "BusinessUnit", "ExternalID", "Financial"] as const, + RestrictedFields: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "MemberEntity", "OrganizationalUnit", "ExternalID", "RestrictedFieldSet"] as const, + BusinessUnit: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "LandingPage", "CostRegularRate", "CostOvertimeRate", "RevenueRegularRate", "RevenueOvertimeRate", "Country", "CountryState", "TimeZone", "Language", "DefaultCurrency", "ShortDateFormat", "NumericFormat", "State", "CostRateUsed", "BillingRateUsed", "AttachmentsCount", "ExternalID"] as const, + TimelinesRoadmapKeyDate: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "SYSID", "Name", "Description", "ExternalID", "RelatesTo", "KeyDate", "Color", "EntityOwner"] as const, + CurrencyExchangeRateCard: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "SYSID", "SupportsDateEffectivity"] as const, + ObjectiveHierarchyLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Parent", "Child", "ExternalID"] as const, + TargetHierarchyLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Parent", "Child", "ExternalID"] as const, + Contribution: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "SYSID", "EntityOwner", "AssociatedItem", "AttachmentsCount", "NotesCount", "EmailsCount", "Unit", "UnitDisplay", "UnitType", "UnitScale", "Assignee", "State", "Status", "PlannedDate", "PlannedValue", "ActualDate", "ActualValue", "Gap", "LinkedTarget", "CurrencyExchangeDate", "DeliveredIn", "CurrencyExchangeDateManuallySet"] as const, + Objective: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "SYSID", "EntityOwner", "AssociatedItem", "ParentObjective", "AttachmentsCount", "SubObjectivesCount", "NotesCount", "EmailsCount", "State", "Status", "StartDate", "EndDate", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "Weight", "PlannedPercent", "PlannedPercentManuallySet", "PercentOfPlan", "PercentOfPlanManuallySet", "ActualPercent", "ActualPercentManuallySet", "PlannedPercentUncertain", "PercentOfPlanUncertain", "ActualPercentUncertain"] as const, + Target: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "SYSID", "EntityOwner", "AssociatedItem", "ParentTarget", "AttachmentsCount", "SubTargetsCount", "NotesCount", "EmailsCount", "Unit", "UnitDisplay", "UnitType", "UnitScale", "State", "TargetType", "Status", "InitialDate", "InitialValue", "TargetDate", "TargetValue", "RequiredContributions", "DirectPlannedContributions", "IndirectPlannedContributions", "PlannedContributions", "DirectActualContributions", "IndirectActualContributions", "ActualContributions", "PlanningGap", "ActualGap", "PercentCompleted", "AssociatedObjective", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "Weight", "PlannedPercent", "PlannedPercentManuallySet", "PercentOfPlan", "PercentOfPlanManuallySet", "ActualPercent", "ActualPercentManuallySet", "WeightedPlannedPercent", "WeightedPercentOfPlan", "WeightedActualPercent", "PlannedPercentUncertain", "PercentOfPlanUncertain", "ActualPercentUncertain", "WeightedPlannedPercentUncertain", "WeightedPercentOfPlanUncertain", "WeightedActualPercentUncertain"] as const, + EntityMappingChange: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "EntityMapping", "RelatedEntityMapping", "ChangeMappingActionType", "LogicExpression"] as const, + ActionItemLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ActionItem", "RelatedTo", "ExternalID"] as const, + DecisionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Decision", "RelatedTo", "ExternalID"] as const, + TimelinesRoadmap: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "SYSID", "Name", "Description", "ExternalID", "RelatesTo", "GroupByField", "EntityOwner", "GroupByFieldLabel", "GroupByFieldIsPickup", "ColorByField", "ColorByFieldLabel", "FiltersData", "FillField", "FillFieldLabel", "DotIndicationColorField", "DotIndicationColorFieldLabel", "AdditionalTextInfoValueField", "AdditionalTextInfoValueFieldLabel", "SettingsData", "MilestonesColorField", "MilestonesColorFieldLabel", "HierarchyFiltersData", "MilestoneFiltersData", "MilestonesFillField", "MilestonesFillFieldLabel", "MilestonesAdditionalTextInfoValueField", "MilestonesAdditionalTextInfoValueFieldLabel"] as const, + PrimaryFlagHistory: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "EffectiveFrom", "EffectiveTo", "ReferenceToMain", "Primary"] as const, + UserStateHistory: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "EffectiveFrom", "EffectiveTo", "State", "ReferenceToMain"] as const, + Decision: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "Container", "AttachmentsCount", "Owner", "NotesCount", "EmailsCount", "DecisionState", "Name", "DueDate", "SYSID", "RelatedToEntityType"] as const, + MeetingAttendee: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "MeetingNote", "Attendee", "ExternalID"] as const, + ActionItem: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "Container", "AttachmentsCount", "ActionItemState", "Name", "DueDate", "EntityOwner", "NotesCount", "EmailsCount", "SYSID", "RelatedToEntityType"] as const, + MeetingNote: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "EntityOwner", "Container", "NotesCount", "EmailsCount", "MeetingNoteState", "Title", "MeetingDate", "MeetingTimeStart", "MeetingTimeEnd", "NextMeetingDate", "NextMeeting", "Note", "Agenda", "Location", "RecordingURL", "AttachmentsCount", "SYSID", "RelatedToEntityType", "TranscriptURL", "MsTeamsId"] as const, + PhasingResourceLinkVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItemVersion", "LaborPhasingVersion", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "OriginalCost", "OriginalRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "ActualMargin", "PlannedMargin", "OriginalCostsVariance", "OriginalRevenueVariance", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "Description", "DefaultCurrency", "VersionSourceObject", "Version", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "SuggestedActualNetRevenue", "PlannedNetMargin"] as const, + GenericPhasingResourceLinkVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItemVersion", "LaborPhasingVersion", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "OriginalCost", "OriginalRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "ActualMargin", "PlannedMargin", "OriginalCostsVariance", "OriginalRevenueVariance", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "Description", "DefaultCurrency", "VersionSourceObject", "Version", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "SuggestedActualNetRevenue", "PlannedNetMargin"] as const, + AssetResourceLinkVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItemVersion", "LaborResourceVersion", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "OriginalCost", "OriginalRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "ActualMargin", "PlannedMargin", "OriginalCostsVariance", "OriginalRevenueVariance", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "Description", "DefaultCurrency", "VersionSourceObject", "Version", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "SuggestedActualNetRevenue", "PlannedNetMargin", "Work", "ActualEffort", "WorkOriginal", "WorkForecast", "ProjectAssignment", "BaselineWork", "BaselineCost", "BaselineRevenue", "BaselineCreationDate", "CostRegularRate", "CostOvertimeRate", "CostRateUsed", "RevenueRegularRate", "RevenueOvertimeRate", "BillingRateUsed", "JobTitleForBilling"] as const, + LaborResourceLinkVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItemVersion", "LaborResourceVersion", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "OriginalCost", "OriginalRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "ActualMargin", "PlannedMargin", "OriginalCostsVariance", "OriginalRevenueVariance", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "Description", "DefaultCurrency", "VersionSourceObject", "Version", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "SuggestedActualNetRevenue", "PlannedNetMargin", "Work", "ActualEffort", "WorkOriginal", "WorkForecast", "ProjectAssignment", "BaselineWork", "BaselineCost", "BaselineRevenue", "BaselineCreationDate", "CostRegularRate", "CostOvertimeRate", "CostRateUsed", "RevenueRegularRate", "RevenueOvertimeRate", "BillingRateUsed", "JobTitleForBilling"] as const, + GenericLaborResourceLinkVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItemVersion", "LaborResourceVersion", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "OriginalCost", "OriginalRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "ActualMargin", "PlannedMargin", "OriginalCostsVariance", "OriginalRevenueVariance", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "Description", "DefaultCurrency", "VersionSourceObject", "Version", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "SuggestedActualNetRevenue", "PlannedNetMargin", "Work", "ActualEffort", "WorkOriginal", "WorkForecast", "ProjectAssignment", "BaselineWork", "BaselineCost", "BaselineRevenue", "BaselineCreationDate", "CostRegularRate", "CostOvertimeRate", "CostRateUsed", "RevenueRegularRate", "RevenueOvertimeRate", "BillingRateUsed", "JobTitleForBilling"] as const, + FixedPriceResourceLinkVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItemVersion", "ExternalID", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "OriginalRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "ActualMargin", "PlannedMargin", "OriginalCostsVariance", "OriginalRevenueVariance", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "Description", "DefaultCurrency", "VersionSourceObject", "Version", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "SuggestedActualNetRevenue", "PlannedNetMargin"] as const, + NonLaborResourceLinkVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItemVersion", "NonLaborResource", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "ActualMargin", "PlannedMargin", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "Description", "DefaultCurrency", "VersionSourceObject", "Version", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "SuggestedActualNetRevenue", "PlannedNetMargin", "IsNlr3rdPartyCost"] as const, + ResourceLinkFinancialVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItemVersion", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "OriginalCost", "OriginalRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "ActualMargin", "PlannedMargin", "OriginalCostsVariance", "OriginalRevenueVariance", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "Description", "DefaultCurrency", "VersionSourceObject", "Version", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "SuggestedActualNetRevenue", "PlannedNetMargin"] as const, + MilestoneVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "SYSID", "Version", "VersionSourceObject", "StartDate", "DueDate", "Duration", "DurationManuallySet", "WorkPolicy", "TrackStatus", "TrackStatusManuallySet", "Conflicts", "OnCriticalPath", "ExpectedProgress", "Parent", "ParentWorkItemVersion", "PlannedBudget", "PlannedBudgetManuallySet", "ActualCost", "ActualCostManuallySet", "PlannedRevenue", "PlannedRevenueManuallySet", "ActualRevenue", "ActualRevenueManuallySet", "Profitability", "CommittedDate", "PercentCompleted", "Manager", "RemainingForecastCostNLR", "RemainingForecastRevenueNLR", "CapexActualYTD", "OpexActualYTD", "CapexBudgetYTD", "OpexBudgetYTD", "FYForecastCostCapex", "FYForecastCostOpex", "FYForecastCost", "FYForecastatCompletionCost", "ProjectForecastatCompletionCost", "ActualBillableHours", "ActualNonBillableHours", "FYBudgetedCost", "FYBudgetedCostCapex", "FYBudgetedCostOpex", "FYBudgetedCostNLR", "FYBudgetedCostLR", "FYExpectedRevenue", "FYForecastRevenue", "ExpectedRevenueLR", "FYExpectedRevenueLR", "PlannedProfit", "FYPlannedProfit", "Work", "WorkManuallySet", "ActualEffort", "RemainingEffort", "RemainingEffortManuallySet", "WorkVariance", "ProjectCapexForecastatCompletionCost", "ProjectOpexForecastatCompletionCost", "PlannedAmount", "RemainingBudget", "Template", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "SuggestedNetRevenue", "ExpectedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "TargetMargin", "BudgetThirdPartyNLRCosts", "BudgetThirdPartyNLRBillableCosts", "BudgetThirdPartyNLRNonBillableCosts", "BudgetLaborAndThirdPartyNLRNonBillableCosts", "ActualThirdPartyNLRCosts", "ActualThirdPartyNLRBillableCosts", "ActualThirdPartyNLRNonBillableCosts", "ActualLaborAndThirdPartyNLRNonBillableCosts", "ActualNetProfit", "ActualNetProfitability", "PlannedNetProfit", "PlannedNetProfitability", "PlannedMargin", "PercentInvested", "PercentProfitability", "ActualCostLR", "ActualCostNLR", "ActualCostNLROpex", "ActualCostNLRCapex", "ActualCostOPEX", "ActualCostCAPEX", "BudgetCostOPEX", "BudgetCostCAPEX", "BudgetCostNLR", "BudgetCostLR", "BudgetStatus", "BudgetedHours", "BudgetedHoursManuallySet", "CostBalance", "FixedPrice", "Phase", "RevenueBalance", "CurrencyRETC", "CurrencyREAC", "RevenueEarnedValue", "TimeTrackingBilling", "TimeTrackingCost", "TimeTrackingEffort", "LaborCostPercentComplete", "ActualRevenueNLR", "BaselineStartDate", "BaselineDueDate", "BaselineDuration", "BaselineWork", "BaselineCreationDate", "BaselineCost", "BaselineRevenue", "SuggestedActualNetRevenue", "SuggestedRevenueNLR", "SuggestedActualRevenueNLR", "ActualDuration", "DurationVariance", "EarnedValue", "CPI", "CurrencyEAC", "SPI", "CurrencyETC", "FixedCost", "RPI", "RTCPI", "TCPI", "State", "ChargedAmount", "ChargedAmountManuallySet", "CostVariance", "PendingTimeTrackingEffort", "PlannedRevenueNLR", "Priority", "TotalEstimatedCost", "BudgetVariancePercent", "BaselineStartDateVariance", "BaselineDueDateVariance", "BaselineDurationVariance", "BaselineWorkVariance", "BaselineCostsVariance", "BaselineRevenueVariance", "Funding", "FundingManuallySet", "Allocation", "AllocationManuallySet", "Unallocated", "FundingGap", "SubAllocation", "SubAllocationManuallySet", "TotalAllocation", "UnusedAllocation", "FundingAvailable", "FundingVariance", "FundingRemaining", "PlannedExpenses", "DirectPlannedExpenses", "ActualExpenses", "DirectActualExpenses", "ProjectedExpenses", "DirectProjectedExpenses", "PlannedBilledExpenses", "DirectPlannedBilledExpenses", "ActualBilledExpenses", "DirectActualBilledExpenses", "ProjectedBilledExpenses", "DirectProjectedBilledExpenses", "MilestoneType"] as const, + ProjectVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "SYSID", "Version", "VersionSourceObject", "StartDate", "DueDate", "Duration", "DurationManuallySet", "WorkPolicy", "TrackStatus", "TrackStatusManuallySet", "Conflicts", "OnCriticalPath", "ExpectedProgress", "Parent", "ParentWorkItemVersion", "PlannedBudget", "PlannedBudgetManuallySet", "ActualCost", "ActualCostManuallySet", "PlannedRevenue", "PlannedRevenueManuallySet", "ActualRevenue", "ActualRevenueManuallySet", "Profitability", "CommittedDate", "PercentCompleted", "Manager", "RemainingForecastCostNLR", "RemainingForecastRevenueNLR", "CapexActualYTD", "OpexActualYTD", "CapexBudgetYTD", "OpexBudgetYTD", "FYForecastCostCapex", "FYForecastCostOpex", "FYForecastCost", "FYForecastatCompletionCost", "ProjectForecastatCompletionCost", "ActualBillableHours", "ActualNonBillableHours", "FYBudgetedCost", "FYBudgetedCostCapex", "FYBudgetedCostOpex", "FYBudgetedCostNLR", "FYBudgetedCostLR", "FYExpectedRevenue", "FYForecastRevenue", "ExpectedRevenueLR", "FYExpectedRevenueLR", "PlannedProfit", "FYPlannedProfit", "Work", "WorkManuallySet", "ActualEffort", "RemainingEffort", "RemainingEffortManuallySet", "WorkVariance", "ProjectCapexForecastatCompletionCost", "ProjectOpexForecastatCompletionCost", "PlannedAmount", "RemainingBudget", "Template", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "SuggestedNetRevenue", "ExpectedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "TargetMargin", "BudgetThirdPartyNLRCosts", "BudgetThirdPartyNLRBillableCosts", "BudgetThirdPartyNLRNonBillableCosts", "BudgetLaborAndThirdPartyNLRNonBillableCosts", "ActualThirdPartyNLRCosts", "ActualThirdPartyNLRBillableCosts", "ActualThirdPartyNLRNonBillableCosts", "ActualLaborAndThirdPartyNLRNonBillableCosts", "ActualNetProfit", "ActualNetProfitability", "PlannedNetProfit", "PlannedNetProfitability", "PlannedMargin", "PercentInvested", "PercentProfitability", "ActualCostLR", "ActualCostNLR", "ActualCostNLROpex", "ActualCostNLRCapex", "ActualCostOPEX", "ActualCostCAPEX", "BudgetCostOPEX", "BudgetCostCAPEX", "BudgetCostNLR", "BudgetCostLR", "BudgetStatus", "BudgetedHours", "BudgetedHoursManuallySet", "CostBalance", "FixedPrice", "Phase", "RevenueBalance", "CurrencyRETC", "CurrencyREAC", "RevenueEarnedValue", "TimeTrackingBilling", "TimeTrackingCost", "TimeTrackingEffort", "LaborCostPercentComplete", "ActualRevenueNLR", "BaselineStartDate", "BaselineDueDate", "BaselineDuration", "BaselineWork", "BaselineCreationDate", "BaselineCost", "BaselineRevenue", "SuggestedActualNetRevenue", "SuggestedRevenueNLR", "SuggestedActualRevenueNLR", "ActualDuration", "DurationVariance", "EarnedValue", "CPI", "CurrencyEAC", "SPI", "CurrencyETC", "FixedCost", "RPI", "RTCPI", "TCPI", "State", "ChargedAmount", "ChargedAmountManuallySet", "CostVariance", "PendingTimeTrackingEffort", "PlannedRevenueNLR", "Priority", "TotalEstimatedCost", "BudgetVariancePercent", "BaselineStartDateVariance", "BaselineDueDateVariance", "BaselineDurationVariance", "BaselineWorkVariance", "BaselineCostsVariance", "BaselineRevenueVariance", "Funding", "FundingManuallySet", "Allocation", "AllocationManuallySet", "Unallocated", "FundingGap", "SubAllocation", "SubAllocationManuallySet", "TotalAllocation", "UnusedAllocation", "FundingAvailable", "FundingVariance", "FundingRemaining", "PlannedExpenses", "DirectPlannedExpenses", "ActualExpenses", "DirectActualExpenses", "ProjectedExpenses", "DirectProjectedExpenses", "PlannedBilledExpenses", "DirectPlannedBilledExpenses", "ActualBilledExpenses", "DirectActualBilledExpenses", "ProjectedBilledExpenses", "DirectProjectedBilledExpenses", "ProjectType", "ProjectManager", "RollupFinancialAndEffortDataFromShortcut", "RollupProgressAndDatesFromShortcut", "IsPortfolio", "LaborBudget", "ProjectSponsor", "BudgetVariance", "CurrentFinancialPeriodStart", "CurrentFinancialPeriodStartSet"] as const, + WorkItemVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "SYSID", "Version", "VersionSourceObject", "StartDate", "DueDate", "Duration", "DurationManuallySet", "WorkPolicy", "TrackStatus", "TrackStatusManuallySet", "Conflicts", "OnCriticalPath", "ExpectedProgress", "Parent", "ParentWorkItemVersion", "PlannedBudget", "PlannedBudgetManuallySet", "ActualCost", "ActualCostManuallySet", "PlannedRevenue", "PlannedRevenueManuallySet", "ActualRevenue", "ActualRevenueManuallySet", "Profitability", "CommittedDate", "PercentCompleted", "Manager", "RemainingForecastCostNLR", "RemainingForecastRevenueNLR", "CapexActualYTD", "OpexActualYTD", "CapexBudgetYTD", "OpexBudgetYTD", "FYForecastCostCapex", "FYForecastCostOpex", "FYForecastCost", "FYForecastatCompletionCost", "ProjectForecastatCompletionCost", "ActualBillableHours", "ActualNonBillableHours", "FYBudgetedCost", "FYBudgetedCostCapex", "FYBudgetedCostOpex", "FYBudgetedCostNLR", "FYBudgetedCostLR", "FYExpectedRevenue", "FYForecastRevenue", "ExpectedRevenueLR", "FYExpectedRevenueLR", "PlannedProfit", "FYPlannedProfit", "Work", "WorkManuallySet", "ActualEffort", "RemainingEffort", "RemainingEffortManuallySet", "WorkVariance", "ProjectCapexForecastatCompletionCost", "ProjectOpexForecastatCompletionCost", "PlannedAmount", "RemainingBudget", "Template", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "SuggestedNetRevenue", "ExpectedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "TargetMargin", "BudgetThirdPartyNLRCosts", "BudgetThirdPartyNLRBillableCosts", "BudgetThirdPartyNLRNonBillableCosts", "BudgetLaborAndThirdPartyNLRNonBillableCosts", "ActualThirdPartyNLRCosts", "ActualThirdPartyNLRBillableCosts", "ActualThirdPartyNLRNonBillableCosts", "ActualLaborAndThirdPartyNLRNonBillableCosts", "ActualNetProfit", "ActualNetProfitability", "PlannedNetProfit", "PlannedNetProfitability", "PlannedMargin", "PercentInvested", "PercentProfitability", "ActualCostLR", "ActualCostNLR", "ActualCostNLROpex", "ActualCostNLRCapex", "ActualCostOPEX", "ActualCostCAPEX", "BudgetCostOPEX", "BudgetCostCAPEX", "BudgetCostNLR", "BudgetCostLR", "BudgetStatus", "BudgetedHours", "BudgetedHoursManuallySet", "CostBalance", "FixedPrice", "Phase", "RevenueBalance", "CurrencyRETC", "CurrencyREAC", "RevenueEarnedValue", "TimeTrackingBilling", "TimeTrackingCost", "TimeTrackingEffort", "LaborCostPercentComplete", "ActualRevenueNLR", "BaselineStartDate", "BaselineDueDate", "BaselineDuration", "BaselineWork", "BaselineCreationDate", "BaselineCost", "BaselineRevenue", "SuggestedActualNetRevenue", "SuggestedRevenueNLR", "SuggestedActualRevenueNLR", "ActualDuration", "DurationVariance", "EarnedValue", "CPI", "CurrencyEAC", "SPI", "CurrencyETC", "FixedCost", "RPI", "RTCPI", "TCPI", "State", "ChargedAmount", "ChargedAmountManuallySet", "CostVariance", "PendingTimeTrackingEffort", "PlannedRevenueNLR", "Priority", "TotalEstimatedCost", "BudgetVariancePercent", "BaselineStartDateVariance", "BaselineDueDateVariance", "BaselineDurationVariance", "BaselineWorkVariance", "BaselineCostsVariance", "BaselineRevenueVariance", "Funding", "FundingManuallySet", "Allocation", "AllocationManuallySet", "Unallocated", "FundingGap", "SubAllocation", "SubAllocationManuallySet", "TotalAllocation", "UnusedAllocation", "FundingAvailable", "FundingVariance", "FundingRemaining", "PlannedExpenses", "DirectPlannedExpenses", "ActualExpenses", "DirectActualExpenses", "ProjectedExpenses", "DirectProjectedExpenses", "PlannedBilledExpenses", "DirectPlannedBilledExpenses", "ActualBilledExpenses", "DirectActualBilledExpenses", "ProjectedBilledExpenses", "DirectProjectedBilledExpenses"] as const, + Versions: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "SYSID", "Project", "State"] as const, + PhasingResourceTimePhaseVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "Date", "FiscalMonth", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "OriginalCost", "OriginalRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "ActualMargin", "PlannedMargin", "OriginalCostsVariance", "OriginalRevenueVariance", "RelatedLinkVersion", "Version", "VersionSourceObject", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue"] as const, + GenPhasingResourceTimePhaseVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "Date", "FiscalMonth", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "OriginalCost", "OriginalRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "ActualMargin", "PlannedMargin", "OriginalCostsVariance", "OriginalRevenueVariance", "RelatedLinkVersion", "Version", "VersionSourceObject", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue"] as const, + AssetResourceTimePhaseVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "Date", "FiscalMonth", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "OriginalCost", "OriginalRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "ActualMargin", "PlannedMargin", "OriginalCostsVariance", "OriginalRevenueVariance", "RelatedLinkVersion", "Version", "VersionSourceObject", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "Work", "ActualEffort", "WorkOriginal", "WorkForecast", "ProjectAssignment"] as const, + LaborResourceTimePhaseVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "Date", "FiscalMonth", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "OriginalCost", "OriginalRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "ActualMargin", "PlannedMargin", "OriginalCostsVariance", "OriginalRevenueVariance", "RelatedLinkVersion", "Version", "VersionSourceObject", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "Work", "ActualEffort", "WorkOriginal", "WorkForecast", "ProjectAssignment"] as const, + GenericLaborResourceTimePhaseVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "Date", "FiscalMonth", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "OriginalCost", "OriginalRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "ActualMargin", "PlannedMargin", "OriginalCostsVariance", "OriginalRevenueVariance", "RelatedLinkVersion", "Version", "VersionSourceObject", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "Work", "ActualEffort", "WorkOriginal", "WorkForecast", "ProjectAssignment"] as const, + FixedPriceResourceTimePhaseVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "Date", "FiscalMonth", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "OriginalRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "ActualMargin", "PlannedMargin", "OriginalCostsVariance", "OriginalRevenueVariance", "ReferenceToMain", "Version", "VersionSourceObject", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue"] as const, + NonLaborResourceTimePhaseVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "Date", "FiscalMonth", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "ActualMargin", "PlannedMargin", "RelatedLinkVersion", "Version", "VersionSourceObject", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue"] as const, + ResourceTimePhaseVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "Date", "FiscalMonth", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "OriginalCost", "OriginalRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "ActualMargin", "PlannedMargin", "OriginalCostsVariance", "OriginalRevenueVariance", "RelatedLinkVersion", "Version", "VersionSourceObject", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue"] as const, + PortfolioProjectLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "Portfolio", "ExternalID", "FundingAmount", "FundingAmountManuallySet", "FundingPercentage", "FundingPercentageManuallySet"] as const, + PortfolioProgramLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "Portfolio", "ExternalID", "FundingAmount", "FundingAmountManuallySet", "FundingPercentage", "FundingPercentageManuallySet"] as const, + PortfolioLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "Portfolio", "ExternalID", "FundingAmount", "FundingAmountManuallySet", "FundingPercentage", "FundingPercentageManuallySet"] as const, + Portfolio: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "SYSID", "ImageUrl", "EntityOwner", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "AttachmentsCount", "NotesCount", "EmailsCount", "CurrencyType", "FundingBudget", "AllocatedFunding", "RemainingFunding", "InvestmentYear", "StartDate", "EndDate", "PortfolioType", "PortfolioState", "RequestedProjectsCount", "ActiveProjectsCount", "ActiveProjectsOnTrackCount", "ActiveProjectsOffTrackCount", "CompletedProjectsCount", "FundingGap", "CancelledProjectsCount", "SubAllocation", "DefaultIntegrationPath", "AllocatedFundingManuallySet", "SubAllocationManuallySet", "TotalAllocation", "BudgetedAmount", "UnusedAllocation", "BudgetedCost", "FundingAvailable", "BudgetedCostManuallySet", "FundingVariance", "ActualCost", "FundingRemaining", "ActualCostManuallySet", "DraftProjectsCount", "TotalProjectsCount"] as const, + TimesheetApprovalDelegateLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "TimesheetApprovalDelegator", "TimesheetApprovalDelegate", "ExternalID", "EffectiveFrom", "EffectiveTo"] as const, + ApprovalDelegateLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "EffectiveFrom", "EffectiveTo"] as const, + RateCardVersion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "RateCard", "EffectiveFrom"] as const, + RateCardItem: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "JobTitle", "RateCard", "UserGroup"] as const, + RateCard: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "Customer", "Enabled", "ManageVersion"] as const, + IntegrationNewObjFieldValue: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "Container", "EntityMappingID", "TargetField", "TargetFieldValue", "TargetFieldType", "SourceObjectField", "SourceObjectFieldValue", "SourceObjectFieldType", "Value", "ValueType"] as const, + IntegrationEventDefRelation: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "Container", "ConditionID", "RelationID", "ShadowEntityMappingID", "EntityMappingID", "ObjectToCreate", "LinkShadowObjectToParent", "LinkShadowToParentUsingRelationID", "IsDotSeparationFieldsLegit", "MapToTargetObject", "MapNewObjectToTargetObject", "RelationTargetType", "RelationType", "LinkTargetToParentLinkName", "LinkTargetToParentLinkedObjectIs", "LogicExpression"] as const, + IntegrationEventSyncCondition: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "Index", "FieldName", "FieldValue", "FieldType", "RightFieldName", "RightFieldValue", "RightFieldType", "Operator", "LogicalConditionType", "Container"] as const, + EmploymentHistory: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "SourceObject", "CostRegularRate", "CostRateManuallySet", "CostOvertimeRate", "CostOvertimeRateManuallySet", "RevenueRegularRate", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed", "Date", "JobTitle", "PrimaryGroup"] as const, + UCTimePhaseMonthly: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "UserOrUserGroup", "Date", "WorkingHours", "Capacity", "NonWorkingException", "CapacityCost", "BillableCapacity", "CostOfWorkingHours", "CostOfCalendarException", "CostOfUserWorkingHours", "CostOfOtherException", "CostOfTotalException", "UserWorkingHours", "OtherException", "TotalException", "FiscalMonth"] as const, + UCTimePhaseDaily: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "UserOrUserGroup", "Date", "WorkingHours", "Capacity", "NonWorkingException", "CapacityCost", "BillableCapacity", "CostOfWorkingHours", "CostOfCalendarException", "CostOfUserWorkingHours", "CostOfOtherException", "CostOfTotalException", "UserWorkingHours", "OtherException", "TotalException"] as const, + UCTimePhase: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "UserOrUserGroup", "Date", "WorkingHours", "Capacity", "NonWorkingException", "CapacityCost", "BillableCapacity", "CostOfWorkingHours", "CostOfCalendarException", "CostOfUserWorkingHours", "CostOfOtherException", "CostOfTotalException", "UserWorkingHours", "OtherException", "TotalException"] as const, + RLTimePhaseMonthly: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "User", "ExternalID", "Date", "Project", "Billable", "ExpenseType", "Work", "WorkBillable", "WorlkNonBillable", "ProjectAssignment", "ProjectAssignmentBillable", "ProjectAssignmentNonBillable", "ActualApproved", "ActualApprovedRegular", "ActualApprovedOvertime", "ActualPending", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Work_None", "ProjectAssignment_None", "ActualApproved_None", "ResourceUtilizationCategory", "WorkOpex", "WorkCapex", "ProjectAssignmentOpex", "ProjectAssignmentCapex", "ActualApprovedBillable", "ActualApprovedNonBillable", "ActualApprovedOpex", "ActualApprovedCapex", "ActualApprovedRegularBillable", "ActualApprovedRegularNonBillable", "ActualApprovedRegularOpex", "ActualApprovedRegularCapex", "ActualApprovedOvertimeBillable", "ActualApprovedOvertimeNonBillable", "ActualApprovedOvertimeOpex", "ActualApprovedOvertimeCapex", "ActualPendingBillable", "ActualPendingNonBillable", "ActualPendingOpex", "ActualPendingCapex", "PlannedBudgetBillable", "PlannedBudgetNonBillable", "PlannedBudgetOpex", "PlannedBudgetCapex", "PlannedBudget_None", "PlannedRevenueBillable", "PlannedRevenueNonBillable", "PlannedRevenueOpex", "PlannedRevenueCapex", "PlannedRevenue_None", "ActualCostBillable", "ActualCostNonBillable", "ActualCostOpex", "ActualCostCapex", "ActualCost_None", "ActualRevenueBillable", "ActualRevenueNonBillable", "ActualRevenueOpex", "WorkOriginal", "ActualRevenueCapex", "WorkBillableOriginal", "ActualRevenue_None", "WorkNonBillableOriginal", "WorkOpexOriginal", "workCapexOriginal", "WorkForecast", "WorkBillableForecast", "WorkNonBillableForecast", "WorkOpexForecast", "WorkCapexForecast", "OriginalCost", "TaskAssignmentOrig_None", "OriginalRevenue", "TaskAssignmentForecast_None", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance", "FiscalMonth", "Work_CustomerWork", "Work_InternalProjects", "Work_Training", "Work_PTO", "Work_Other", "ProjectAssignment_CustomerWork", "ProjectAssignment_InternalProjects", "ProjectAssignment_Training", "ProjectAssignment_PTO", "ProjectAssignment_Other", "ActualApproved_CustomerWork", "ActualApproved_InternalProjects", "ActualApproved_Training", "ActualApproved_PTO", "ActualApproved_Other", "PlannedBudget_CustomerWork", "PlannedBudget_InternalProjects", "PlannedBudget_Training", "PlannedBudget_PTO", "PlannedBudget_Other", "PlannedRevenue_CustomerWork", "PlannedRevenue_InternalProjects", "PlannedRevenue_Training", "PlannedRevenue_PTO", "PlannedRevenue_Other", "ActualCost_CustomerWork", "ActualCost_InternalProjects", "ActualCost_Training", "ActualCost_PTO", "ActualCost_Other", "ActualRevenue_CustomerWork", "ActualRevenue_InternalProjects", "ActualRevenue_Training", "ActualRevenue_PTO", "ActualRevenue_Other", "TaskAssignmentOrig_CustomerWork", "TaskAssignmentOrig_InternalProjects", "TaskAssignmentOrig_Training", "TaskAssignmentOrig_PTO", "TaskAssignmentOrig_Other", "TaskAssignmentForecast_CustomerWork", "TaskAssignmentForecast_InternalProjects", "TaskAssignmentForecast_Training", "TaskAssignmentForecast_PTO", "TaskAssignmentForecast_Other"] as const, + RLTimePhaseDaily: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "User", "ExternalID", "Date", "Project", "Billable", "ExpenseType", "Work", "WorkBillable", "WorlkNonBillable", "ProjectAssignment", "ProjectAssignmentBillable", "ProjectAssignmentNonBillable", "ActualApproved", "ActualApprovedRegular", "ActualApprovedOvertime", "ActualPending", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Work_None", "ProjectAssignment_None", "ActualApproved_None", "ResourceUtilizationCategory", "WorkOpex", "WorkCapex", "ProjectAssignmentOpex", "ProjectAssignmentCapex", "ActualApprovedBillable", "ActualApprovedNonBillable", "ActualApprovedOpex", "ActualApprovedCapex", "ActualApprovedRegularBillable", "ActualApprovedRegularNonBillable", "ActualApprovedRegularOpex", "ActualApprovedRegularCapex", "ActualApprovedOvertimeBillable", "ActualApprovedOvertimeNonBillable", "ActualApprovedOvertimeOpex", "ActualApprovedOvertimeCapex", "ActualPendingBillable", "ActualPendingNonBillable", "ActualPendingOpex", "ActualPendingCapex", "PlannedBudgetBillable", "PlannedBudgetNonBillable", "PlannedBudgetOpex", "PlannedBudgetCapex", "PlannedBudget_None", "PlannedRevenueBillable", "PlannedRevenueNonBillable", "PlannedRevenueOpex", "PlannedRevenueCapex", "PlannedRevenue_None", "ActualCostBillable", "ActualCostNonBillable", "ActualCostOpex", "ActualCostCapex", "ActualCost_None", "ActualRevenueBillable", "ActualRevenueNonBillable", "ActualRevenueOpex", "WorkOriginal", "ActualRevenueCapex", "WorkBillableOriginal", "ActualRevenue_None", "WorkNonBillableOriginal", "WorkOpexOriginal", "workCapexOriginal", "WorkForecast", "WorkBillableForecast", "WorkNonBillableForecast", "WorkOpexForecast", "WorkCapexForecast", "OriginalCost", "TaskAssignmentOrig_None", "OriginalRevenue", "TaskAssignmentForecast_None", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance", "Work_CustomerWork", "Work_InternalProjects", "Work_Training", "Work_PTO", "Work_Other", "ProjectAssignment_CustomerWork", "ProjectAssignment_InternalProjects", "ProjectAssignment_Training", "ProjectAssignment_PTO", "ProjectAssignment_Other", "ActualApproved_CustomerWork", "ActualApproved_InternalProjects", "ActualApproved_Training", "ActualApproved_PTO", "ActualApproved_Other", "PlannedBudget_CustomerWork", "PlannedBudget_InternalProjects", "PlannedBudget_Training", "PlannedBudget_PTO", "PlannedBudget_Other", "PlannedRevenue_CustomerWork", "PlannedRevenue_InternalProjects", "PlannedRevenue_Training", "PlannedRevenue_PTO", "PlannedRevenue_Other", "ActualCost_CustomerWork", "ActualCost_InternalProjects", "ActualCost_Training", "ActualCost_PTO", "ActualCost_Other", "ActualRevenue_CustomerWork", "ActualRevenue_InternalProjects", "ActualRevenue_Training", "ActualRevenue_PTO", "ActualRevenue_Other", "TaskAssignmentOrig_CustomerWork", "TaskAssignmentOrig_InternalProjects", "TaskAssignmentOrig_Training", "TaskAssignmentOrig_PTO", "TaskAssignmentOrig_Other", "TaskAssignmentForecast_CustomerWork", "TaskAssignmentForecast_InternalProjects", "TaskAssignmentForecast_Training", "TaskAssignmentForecast_PTO", "TaskAssignmentForecast_Other"] as const, + RLTimePhase: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "User", "ExternalID", "Date", "Project", "Billable", "ExpenseType", "Work", "WorkBillable", "WorlkNonBillable", "ProjectAssignment", "ProjectAssignmentBillable", "ProjectAssignmentNonBillable", "ActualApproved", "ActualApprovedRegular", "ActualApprovedOvertime", "ActualPending", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Work_None", "ProjectAssignment_None", "ActualApproved_None", "ResourceUtilizationCategory", "WorkOpex", "WorkCapex", "ProjectAssignmentOpex", "ProjectAssignmentCapex", "ActualApprovedBillable", "ActualApprovedNonBillable", "ActualApprovedOpex", "ActualApprovedCapex", "ActualApprovedRegularBillable", "ActualApprovedRegularNonBillable", "ActualApprovedRegularOpex", "ActualApprovedRegularCapex", "ActualApprovedOvertimeBillable", "ActualApprovedOvertimeNonBillable", "ActualApprovedOvertimeOpex", "ActualApprovedOvertimeCapex", "ActualPendingBillable", "ActualPendingNonBillable", "ActualPendingOpex", "ActualPendingCapex", "PlannedBudgetBillable", "PlannedBudgetNonBillable", "PlannedBudgetOpex", "PlannedBudgetCapex", "PlannedBudget_None", "PlannedRevenueBillable", "PlannedRevenueNonBillable", "PlannedRevenueOpex", "PlannedRevenueCapex", "PlannedRevenue_None", "ActualCostBillable", "ActualCostNonBillable", "ActualCostOpex", "ActualCostCapex", "ActualCost_None", "ActualRevenueBillable", "ActualRevenueNonBillable", "ActualRevenueOpex", "WorkOriginal", "ActualRevenueCapex", "WorkBillableOriginal", "ActualRevenue_None", "WorkNonBillableOriginal", "WorkOpexOriginal", "workCapexOriginal", "WorkForecast", "WorkBillableForecast", "WorkNonBillableForecast", "WorkOpexForecast", "WorkCapexForecast", "OriginalCost", "TaskAssignmentOrig_None", "OriginalRevenue", "TaskAssignmentForecast_None", "Work_CustomerWork", "Work_InternalProjects", "Work_Training", "Work_PTO", "Work_Other", "ProjectAssignment_CustomerWork", "ProjectAssignment_InternalProjects", "ProjectAssignment_Training", "ProjectAssignment_PTO", "ProjectAssignment_Other", "ActualApproved_CustomerWork", "ActualApproved_InternalProjects", "ActualApproved_Training", "ActualApproved_PTO", "ActualApproved_Other", "PlannedBudget_CustomerWork", "PlannedBudget_InternalProjects", "PlannedBudget_Training", "PlannedBudget_PTO", "PlannedBudget_Other", "PlannedRevenue_CustomerWork", "PlannedRevenue_InternalProjects", "PlannedRevenue_Training", "PlannedRevenue_PTO", "PlannedRevenue_Other", "ActualCost_CustomerWork", "ActualCost_InternalProjects", "ActualCost_Training", "ActualCost_PTO", "ActualCost_Other", "ActualRevenue_CustomerWork", "ActualRevenue_InternalProjects", "ActualRevenue_Training", "ActualRevenue_PTO", "ActualRevenue_Other", "TaskAssignmentOrig_CustomerWork", "TaskAssignmentOrig_InternalProjects", "TaskAssignmentOrig_Training", "TaskAssignmentOrig_PTO", "TaskAssignmentOrig_Other", "TaskAssignmentForecast_CustomerWork", "TaskAssignmentForecast_InternalProjects", "TaskAssignmentForecast_Training", "TaskAssignmentForecast_PTO", "TaskAssignmentForecast_Other", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance"] as const, + ResourceRequestSkillLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ResourceRequest", "Skill", "ExternalID"] as const, + ResourceRequest: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Project", "ResourceEntity", "ExternalID", "State", "Description", "Group", "GeoLocation", "Language", "ProjectRole"] as const, + RRTimePhase: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "Date", "RequestedWork", "RelatedResourceRequest", "ReportingPeriod"] as const, + Template: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "State", "Category", "ReferenceToTemplate", "ExternalID", "LastUpdatedBySystemOn", "SYSID", "EntityType"] as const, + NonLaborPhasingResource: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory"] as const, + LaborPhasingResource: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory"] as const, + FixedPricePhasingResource: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory"] as const, + AssetPhasingResource: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory"] as const, + PhasingResource: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory"] as const, + FixedPriceResource: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory"] as const, + NonLaborResource: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory", "SYSID", "ImageUrl", "Billable", "ExpenseType", "Reschedule", "IsNlr3rdPartyCost", "AttachmentsCount"] as const, + User: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DisplayName", "ExternalID", "NLRCategory", "State", "Phase", "Availability", "InternalId", "ImageUrl", "CostRegularRate", "TimeZone", "CostRateManuallySet", "CostOvertimeRate", "TimeZoneManuallySet", "CostOvertimeRateManuallySet", "LocalCurrency", "RevenueRegularRate", "ShowLocalCurrencyCode", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "BusinessAddress", "CapacityStart", "CapacityEnd", "JobTitle", "JobTitleManuallySet", "RatesGroup", "TargetUtilization", "UserName", "OfficeFax", "AttachmentsCount", "HomeAddress", "Region", "LastLogin", "Admin", "ExternalUser", "DirectManager", "AllowEmails", "SendInvitationMail", "Position", "SubscribeToProjectNotifications", "Language", "SuperUser", "PlanviewUserID", "Financial", "Location", "TwitterUserName", "TwitterLastMessageId", "DirectManagerManuallySet", "GoogleUserName", "LanguageManuallySet", "FirstName", "Signature", "LastName", "Email", "OfficePhone", "MobilePhone", "LicenseType", "Trial", "ExpirationDate", "ShortDateFormat", "LastLoginIPAddress", "StopwatchesCount", "LandingPage", "LandingPageManuallySet", "EmailNotifications", "Profile", "NumericFormat", "MobileProfile", "SharepointOnlineUserName", "UserSyncId", "UserSyncNotes", "UserSyncUpdated", "TimesheetsExpectedFrom", "TimesheetsCompleteUntil", "ScimSyncId", "TimesheetApprovalDelegatesCount", "TimesheetApprovalDelegatorsCount", "LiteAdmin", "IntegrationUser", "ScimSyncJobTitle", "AutoCreatedAsRequester", "ExpectedTimesheets", "MsTeamsUserName", "NotesCount"] as const, + UserPlaceholder: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DisplayName", "Description", "ExternalID", "NLRCategory", "State", "Availability", "InternalId", "ImageUrl", "CostRegularRate", "CostRateManuallySet", "CostOvertimeRate", "CostOvertimeRateManuallySet", "LocalCurrency", "RevenueRegularRate", "ShowLocalCurrencyCode", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "BusinessAddress", "JobTitle", "JobTitleManuallySet", "RatesGroup", "TargetUtilization"] as const, + GenericUser: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DisplayName", "Description", "ExternalID", "NLRCategory", "State", "Availability", "InternalId", "ImageUrl", "CostRegularRate", "TimeZone", "CostRateManuallySet", "CostOvertimeRate", "TimeZoneManuallySet", "CostOvertimeRateManuallySet", "LocalCurrency", "RevenueRegularRate", "ShowLocalCurrencyCode", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "BusinessAddress", "CapacityStart", "CapacityEnd", "JobTitle", "JobTitleManuallySet", "RatesGroup", "TargetUtilization"] as const, + AssetPlaceholder: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DisplayName", "Description", "ExternalID", "NLRCategory", "State", "Availability", "InternalId", "ImageUrl", "CostRegularRate", "CostRateManuallySet", "CostOvertimeRate", "CostOvertimeRateManuallySet", "LocalCurrency", "RevenueRegularRate", "ShowLocalCurrencyCode", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "BusinessAddress", "JobTitle", "RatesGroup", "TargetUtilization"] as const, + Asset: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DisplayName", "Description", "ExternalID", "NLRCategory", "State", "Availability", "InternalId", "ImageUrl", "CostRegularRate", "TimeZone", "CostRateManuallySet", "CostOvertimeRate", "TimeZoneManuallySet", "CostOvertimeRateManuallySet", "LocalCurrency", "RevenueRegularRate", "ShowLocalCurrencyCode", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "BusinessAddress", "CapacityStart", "CapacityEnd", "JobTitle", "RatesGroup", "TargetUtilization", "NotesCount", "AttachmentsCount"] as const, + GenericAsset: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DisplayName", "Description", "ExternalID", "NLRCategory", "State", "Availability", "InternalId", "ImageUrl", "CostRegularRate", "TimeZone", "CostRateManuallySet", "CostOvertimeRate", "TimeZoneManuallySet", "CostOvertimeRateManuallySet", "LocalCurrency", "RevenueRegularRate", "ShowLocalCurrencyCode", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "BusinessAddress", "CapacityStart", "CapacityEnd", "JobTitle", "RatesGroup", "TargetUtilization"] as const, + WorkingEntity: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DisplayName", "Description", "ExternalID", "NLRCategory", "State", "Availability", "InternalId", "ImageUrl", "CostRegularRate", "TimeZone", "CostRateManuallySet", "CostOvertimeRate", "TimeZoneManuallySet", "CostOvertimeRateManuallySet", "LocalCurrency", "RevenueRegularRate", "ShowLocalCurrencyCode", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "BusinessAddress", "CapacityStart", "CapacityEnd", "JobTitle", "RatesGroup", "TargetUtilization"] as const, + Profile: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory", "Availability", "ImageUrl", "LandingPage", "CustomCss", "AllowFileDownloads"] as const, + AssetType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory", "Availability", "AttachmentsCount", "CostRegularRate", "CostRateManuallySet", "CostOvertimeRate", "CostOvertimeRateManuallySet", "RevenueRegularRate", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed"] as const, + JobTitle: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory", "Availability", "AttachmentsCount", "CostRegularRate", "CostRateManuallySet", "CostOvertimeRate", "CostOvertimeRateManuallySet", "RevenueRegularRate", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed", "LikesCount"] as const, + JobAssetType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory", "Availability", "AttachmentsCount", "CostRegularRate", "CostRateManuallySet", "CostOvertimeRate", "CostOvertimeRateManuallySet", "RevenueRegularRate", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed"] as const, + GroupAssetType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory", "State", "Availability", "AttachmentsCount", "CostRegularRate", "CostRateManuallySet", "CostOvertimeRate", "CostOvertimeRateManuallySet", "RevenueRegularRate", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed", "Group", "AssetType"] as const, + JobTitleInGroup: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory", "State", "Availability", "AttachmentsCount", "CostRegularRate", "CostRateManuallySet", "CostOvertimeRate", "CostOvertimeRateManuallySet", "RevenueRegularRate", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed", "Group", "JobTitle"] as const, + GroupJobAssetType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory", "State", "Availability", "AttachmentsCount", "CostRegularRate", "CostRateManuallySet", "CostOvertimeRate", "CostOvertimeRateManuallySet", "RevenueRegularRate", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed", "Group", "JobTitle"] as const, + DiscussionGroup: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory", "Availability", "AttachmentsCount", "ObjectAlias", "Owner", "CustomCss", "PostsCount", "EmailNotifications", "Public", "ImageUrl", "NotifyUsers", "LikesCount"] as const, + UserGroup: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory", "SubGroupsCount", "Availability", "AttachmentsCount", "ObjectAlias", "DirectManager", "CustomCss", "OrganizationUnit", "TimeZone", "Language", "LikesCount", "LandingPage", "PostsCount", "EmailNotifications", "Public", "ImageUrl", "Profile", "MobileProfile", "UserSyncId", "UserSyncNotes", "UserSyncUpdated", "StaffingRequestRequired", "StaffingRequestRequiredManSet", "ResourcingGroup", "ScimSyncId", "CostRegularRate", "CostRateManuallySet", "CostOvertimeRate", "CostOvertimeRateManuallySet", "RevenueRegularRate", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed"] as const, + Group: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory", "Availability", "AttachmentsCount", "ObjectAlias", "DirectManager", "CustomCss"] as const, + Skill: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory", "Availability", "AttachmentsCount", "LikesCount", "ImageUrl"] as const, + ResourceGroupEntity: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory", "Availability", "AttachmentsCount"] as const, + ResourceEntity: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory", "State", "Availability"] as const, + GenericResourceEntity: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "NLRCategory"] as const, + FileTemplate: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "SYSID", "Name", "Description", "ExternalID", "DocumentType", "StorageType", "FileType", "ViewerUrl", "FileModificationDate", "Content", "Url", "ContentLength", "SharePointFileId", "TemplateItemType"] as const, + Document: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "SYSID", "Name", "Description", "ExternalID", "DocumentType", "StorageType", "FileType", "ViewerUrl", "FileModificationDate", "Content", "Url", "ContentLength", "SharePointFileId", "LikesCount", "ProofDecision", "IsBeingProofed", "ProofLastUpdatedOn", "ProofOwner", "ProofUpdateCompletedOn", "LastDecisionBy", "LastDecisionByEmail", "LastApproverDecision", "LastDecisionOn", "ProofDeadlineDate"] as const, + BaseFile: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "SYSID", "Name", "Description", "ExternalID", "DocumentType", "StorageType", "FileType", "ViewerUrl", "FileModificationDate", "Content", "Url", "ContentLength", "SharePointFileId"] as const, + PhasingResourceLinkDirect: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "PhasingResource", "ExternalID", "Billable", "ExpenseType", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Description", "DefaultCurrency", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance"] as const, + PhasingResourceLinkAggregated: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "PhasingResource", "ExternalID", "Billable", "ExpenseType", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Description", "DefaultCurrency", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance"] as const, + PhasingResourceLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "PhasingResource", "ExternalID", "Billable", "ExpenseType", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Description", "DefaultCurrency", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance"] as const, + GenericPhasingResourceLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "PhasingResource", "ExternalID", "Billable", "ExpenseType", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Description", "DefaultCurrency", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance"] as const, + AssetResourceLinkAggregated: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "LaborResource", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Description", "DefaultCurrency", "Snapshot", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance", "HumanResource", "Work", "ActualEffort", "WorkOriginal", "WorkForecast"] as const, + AssetResourceLinkDirect: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "LaborResource", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Description", "DefaultCurrency", "Snapshot", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance", "HumanResource", "Work", "ActualEffort", "WorkOriginal", "WorkForecast"] as const, + AssetResourceLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "LaborResource", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Description", "DefaultCurrency", "Snapshot", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance", "HumanResource", "Work", "ActualEffort", "WorkOriginal", "WorkForecast"] as const, + LaborResourceLinkAggregated: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "LaborResource", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Description", "DefaultCurrency", "Snapshot", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance", "HumanResource", "Work", "ActualEffort", "WorkOriginal", "WorkForecast"] as const, + LaborResourceLinkDirect: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "LaborResource", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Description", "DefaultCurrency", "Snapshot", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance", "HumanResource", "Work", "ActualEffort", "WorkOriginal", "WorkForecast"] as const, + LaborResourceLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "LaborResource", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Description", "DefaultCurrency", "Snapshot", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance", "HumanResource", "Work", "ActualEffort", "WorkOriginal", "WorkForecast"] as const, + GenericLaborResourceLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "LaborResource", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Description", "DefaultCurrency", "Snapshot", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance", "HumanResource", "Work", "ActualEffort", "WorkOriginal", "WorkForecast"] as const, + FixedPriceResourceLinkAggregated: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Description", "DefaultCurrency", "Snapshot", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance"] as const, + FixedPriceResourceLinkDirect: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "FixedPriceResource", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Description", "DefaultCurrency", "Snapshot", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance"] as const, + FixedPriceResourceLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "FixedPriceResource", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Description", "DefaultCurrency", "Snapshot", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance"] as const, + NonLaborResourceLinkAggregated: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "NonLaborResource", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Description", "DefaultCurrency", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "IsNlr3rdPartyCost", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance"] as const, + NonLaborResourceLinkDirect: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "NonLaborResource", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Description", "DefaultCurrency", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "IsNlr3rdPartyCost", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance", "Reschedule", "RescheduleManuallySet"] as const, + NonLaborResourceLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "NonLaborResource", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Description", "DefaultCurrency", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "IsNlr3rdPartyCost", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance"] as const, + ResourceLinkFinancial: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "ExternalID", "Billable", "ExpenseType", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Description", "DefaultCurrency", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance"] as const, + PhasingResourceTimePhase: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "RelatedLink", "Date", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Aggregated", "FiscalMonth", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance", "PlannedNetRevenue", "ActualNetRevenue"] as const, + GenericPhasingResourceTimePhase: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "RelatedLink", "Date", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Aggregated", "FiscalMonth", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance", "PlannedNetRevenue", "ActualNetRevenue"] as const, + AssetResourceTimePhase: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "RelatedLink", "Date", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Aggregated", "FiscalMonth", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance", "Work", "ActualEffort", "WorkOriginal", "WorkForecast", "PlannedNetRevenue", "ActualNetRevenue"] as const, + LaborResourceTimePhase: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "RelatedLink", "Date", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Aggregated", "FiscalMonth", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance", "Work", "ActualEffort", "WorkOriginal", "WorkForecast", "PlannedNetRevenue", "ActualNetRevenue"] as const, + GenericLaborResourceTimePhase: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "RelatedLink", "Date", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Aggregated", "FiscalMonth", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance", "Work", "ActualEffort", "WorkOriginal", "WorkForecast", "PlannedNetRevenue", "ActualNetRevenue"] as const, + FixedPriceResourceTimePhase: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "RelatedLink", "Date", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Aggregated", "FiscalMonth", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance", "ActualNetRevenue"] as const, + NonLaborResourceTimePhase: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "RelatedLink", "Date", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Aggregated", "FiscalMonth", "OriginalCost", "OriginalRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedActualNetRevenue"] as const, + ResourceTimePhase: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "RelatedLink", "Date", "PlannedBudget", "ActualCost", "ForecastCost", "PlannedRevenue", "ActualRevenue", "ForecastRevenue", "ActualMargin", "PlannedMargin", "Aggregated", "FiscalMonth", "OriginalCost", "OriginalRevenue", "SuggestedNetRevenue", "PlannedNetRevenue", "ActualNetRevenue", "SuggestedRevenue", "SuggestedActualRevenue", "ActualNetMargin", "PlannedNetMargin", "SuggestedActualNetRevenue", "CostVariance", "ForecastCostVariance", "RevenueVariance", "ForecastRevenueVariance", "ActualProfit", "PlannedProfit", "OriginalCostsVariance", "OriginalRevenueVariance"] as const, + LaborResourceSnapshot: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "SnapshotFor", "ShouldBeUpdated", "ShouldBeUpdatedNext"] as const, + AdditionalObjectProperties: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "RelatedItem", "Overview", "ExternalID", "Overview1", "Overview2", "Overview3", "Overview4", "Overview5"] as const, + PushNotification: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "State", "JSON"] as const, + Data: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "SourceObject", "CurrencyExchangeDate", "DataObjectType", "CurrencyExchangeDateManuallySet"] as const, + WorkByDay: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "ResourceLink", "SetByLeveling", "Comment", "Date", "DurationInDaysInt", "OverrideNotworkingDay", "WorkAtDay"] as const, + ResourceCalendarExceptionAbsolute: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "ResourceLink", "SetByLeveling", "Comment", "Date", "DurationInDaysInt", "OverrideNotworkingDay", "Units"] as const, + ResourceCalendarExceptionRelative: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "SetByLeveling", "Comment", "Offset", "DurationInDaysDbl"] as const, + ResourceCalendarException: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "SetByLeveling", "Comment"] as const, + ReportShortcutLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Parent", "Child", "ExternalID", "Sequence"] as const, + ReportsHierarchyLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Parent", "Child", "ExternalID", "Sequence"] as const, + ReportsFolderContentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Parent", "Child", "ExternalID", "Sequence"] as const, + FolderContentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Parent", "Child", "ExternalID"] as const, + Dashboard: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "ImageUrl", "SYSID", "EntityOwner", "AttachmentsCount", "Scheduled", "SchedulerPreferredTime", "SchedulerNotificationType", "SchedulerTo", "SchedulerCc", "SchedulerNotificationSubject", "SchedulerNotificationBody", "SchedulerPostTopics", "SchedulerPostNotifiers", "SchedulerSaveExportedData", "SchedulerExportAs", "RecurrenceType", "RecurrenceInterval", "WorkdaysOnly", "WeekDays", "RecurrenceDayOfMonth", "RecurrenceMonthOfYear", "RecurrenceStartDate", "RecurrenceEndDate", "OccurenceDuration", "Occurrences", "EmailsCount"] as const, + Report: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "ImageUrl", "SYSID", "EntityOwner", "AttachmentsCount", "Scheduled", "SchedulerPreferredTime", "SchedulerNotificationType", "SchedulerTo", "SchedulerCc", "SchedulerNotificationSubject", "SchedulerNotificationBody", "SchedulerPostTopics", "SchedulerPostNotifiers", "SchedulerSaveExportedData", "SchedulerExportAs", "RecurrenceType", "RecurrenceInterval", "WorkdaysOnly", "WeekDays", "RecurrenceDayOfMonth", "RecurrenceMonthOfYear", "RecurrenceStartDate", "RecurrenceEndDate", "OccurenceDuration", "Occurrences", "EmailsCount", "Editable"] as const, + ReportAndDashboard: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "ImageUrl", "SYSID", "EntityOwner", "AttachmentsCount", "Scheduled", "SchedulerPreferredTime", "SchedulerNotificationType", "SchedulerTo", "SchedulerCc", "SchedulerNotificationSubject", "SchedulerNotificationBody", "SchedulerPostTopics", "SchedulerPostNotifiers", "SchedulerSaveExportedData", "SchedulerExportAs", "RecurrenceType", "RecurrenceInterval", "WorkdaysOnly", "WeekDays", "RecurrenceDayOfMonth", "RecurrenceMonthOfYear", "RecurrenceStartDate", "RecurrenceEndDate", "OccurenceDuration", "Occurrences", "EmailsCount"] as const, + FolderForReport: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "ImageUrl", "SYSID", "EntityOwner", "AttachmentsCount", "SubItemsCount", "ChildrenCount"] as const, + FoldersAndReports: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "ImageUrl", "SYSID", "EntityOwner", "AttachmentsCount"] as const, + Permission: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Entity", "Resource", "Role", "ExternalID"] as const, + DependencyLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "WorkItem", "DependsOn", "DependencyType", "Lag", "Shortcut", "LastUpdatedBySystemOn", "ExternalID", "EntityType"] as const, + IntegrationsRegistry: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Name", "Description", "ExternalID", "IntegrationAuthenticationType", "AdditionalCredentialField"] as const, + TopicDocumentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Topic", "Entity", "ExternalID"] as const, + TopicDiscussionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Topic", "Entity", "ExternalID"] as const, + TopicGroupLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Topic", "Entity", "ExternalID"] as const, + TopicExpenseEntryLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Topic", "Entity", "ExternalID"] as const, + TopicExpenseSheetLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Topic", "Entity", "ExternalID"] as const, + TopicCustomerLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Topic", "Entity", "ExternalID"] as const, + TopicCaseLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Topic", "Entity", "ExternalID"] as const, + TopicWorkItemLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Topic", "Entity", "ExternalID"] as const, + TopicLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Topic", "Entity", "ExternalID"] as const, + Milestone: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "ExternalID", "State", "Phase", "StartDate", "DueDate", "Duration", "ActualStartDate", "ActualEndDate", "TrackStatus", "StatusChangedOn", "Conflicts", "OnCriticalPath", "StartDateManuallySet", "DueDateManuallySet", "DurationManuallySet", "TrackStatusManuallySet", "EarliestStartDate", "LatestStartDate", "EarliestEndDate", "LatestEndDate", "ExpectedProgress", "SchedulingType", "ImportedFrom", "Importance", "Priority", "PercentCompleted", "PercentCompletedManuallySet", "Manager", "ChargedTypeManuallySet", "ChildrenCount", "SuccessorsCount", "PredecessorsCount", "AllUserResourcesAndPlaceholdersCount", "AttachmentsCount", "PostsCount", "NotesCount", "ConstraintsTypeManuallySet", "Reportable", "ReportableManuallySet", "Billable", "ChildShortcutCount", "Project", "WorkPolicy", "CommitLevel", "ReportingStartDate", "SYSID", "Work", "ActualEffort", "RemainingEffort", "WorkManuallySet", "RemainingEffortManuallySet", "WorkVariance", "ActualDuration", "StartDateVariance", "ActualCost", "DueDateVariance", "PlannedBudget", "DurationVariance", "ActualCostManuallySet", "PlannedBudgetManuallySet", "TimeTrackingEffort", "TimeTrackingCost", "FixedCost", "FixedPrice", "PercentInvested", "CostVariance", "TimeTrackingBilling", "EarnedValue", "PlannedRevenue", "CPI", "ActualRevenue", "SPI", "PlannedRevenueManuallySet", "ActualRevenueManuallySet", "Profitability", "PercentProfitability", "PlannedExpenses", "DirectPlannedExpenses", "ActualExpenses", "DirectActualExpenses", "ProjectedExpenses", "DirectProjectedExpenses", "PlannedBilledExpenses", "DirectPlannedBilledExpenses", "ActualBilledExpenses", "DirectActualBilledExpenses", "ProjectedBilledExpenses", "DirectProjectedBilledExpenses", "RevenueCurrencyType", "RevenueCurrencyTypeManuallySet", "CostCurrencyType", "CostCurrencyTypeManuallySet", "Pending", "IssuesCount", "LastUpdatedBySystemOn", "ActualEndDateManuallySet", "AllowReportingOnSubItems", "AllowReportingOnSubItemsManuallySet", "CommittedDate", "ResourcesAndPlaceholdersCount", "BudgetedHours", "EmailsCount", "CostBalance", "BudgetStatus", "BudgetStatusManuallySet", "RevenueBalance", "ActualEffortUpdatedFromTimesheets", "ActualEffortUpdatedFromTimesheetsManuallySet", "ParentProject", "SfExternalId", "SfExternalName", "InternalId", "OrderID", "SKU", "BaselineStartDate", "BaselineStartDateVariance", "BaselineDueDate", "BaselineDueDateVariance", "BaselineDuration", "BaselineDurationVariance", "BaselineWork", "BaselineWorkVariance", "BaselineCost", "BaselineCostsVariance", "BaselineRevenue", "BaselineRevenueVariance", "InternalStatus", "Deliverable", "DeliverableType", "Executable", "Parent", "PlannedAmount", "ChargedAmount", "TCPI", "TotalEstimatedCost", "Charged", "ChargedAmountManuallySet", "EstimatedStartDate", "RevenueEarnedValue", "EstimatedEndDate", "RPI", "EstimatedDuration", "RTCPI", "ReportableStartDate", "EntityType", "CompletnessDefinition", "ReportableEndDate", "TaskReportingPolicy", "ConflictType", "TaskReportingPolicyManuallySet", "FloatingTask", "IndividualReporting", "BaselineCreationDate", "AggregatedStopwatchesCount", "CalculateCompletenessBasedOnEfforts", "ActiveStopwatch", "CalculateCompletenessBasedOnEffortsManuallySet", "ObjectAlias", "StopwatchesCount", "LikesCount", "BudgetedHoursManuallySet", "CurrencyEAC", "PendingTimeTrackingEffort", "CurrencyREAC", "CurrencyETC", "ImageUrl", "CurrencyRETC", "SetByLeveling", "Template", "GeographicalRegion", "ResourceUtilizationCategory", "Country", "StateProvince", "ResourceUtilizationCategoryManuallySet", "ExpenseType", "BudgetCostOPEX", "ExpenseTypeManuallySet", "BudgetCostCAPEX", "BudgetCostNLR", "BudgetCostLR", "EntityOwner", "ActualCostOPEX", "ActualCostCAPEX", "ActualCostNLR", "ActualCostNLROpex", "ActualCostNLRCapex", "ActualCostLR", "ActualRevenueNLR", "PlannedRevenueNLR", "FinancialStart", "FinancialEnd", "FinancialOldStartDate", "RemainingForecastCostNLR", "RemainingForecastRevenueNLR", "CapexActualYTD", "OpexActualYTD", "CapexBudgetYTD", "OpexBudgetYTD", "FYForecastCostCapex", "FYForecastCostOpex", "FYForecastCost", "FYForecastatCompletionCost", "ProjectForecastatCompletionCost", "ActualBillableHours", "ActualNonBillableHours", "ResourceRateDate", "ResourceRateDateManuallySet", "LastReplanningDate", "FYBudgetedCost", "FYBudgetedCostCapex", "FYBudgetedCostOpex", "FYBudgetedCostNLR", "FYBudgetedCostLR", "FYExpectedRevenue", "FYForecastRevenue", "ExpectedRevenueLR", "FYExpectedRevenueLR", "PlannedProfit", "FYPlannedProfit", "UserResourcesCount", "AllUserResourcesCount", "ProjectCapexForecastatCompletionCost", "ProjectOpexForecastatCompletionCost", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "SuggestedNetRevenue", "Funding", "ExpectedNetRevenue", "FundingManuallySet", "ActualNetRevenue", "FundingGap", "SuggestedRevenue", "Allocation", "SuggestedActualRevenue", "AllocationManuallySet", "ActualNetProfitability", "SubAllocation", "PlannedNetProfitability", "SubAllocationManuallySet", "TargetMargin", "TotalAllocation", "BudgetThirdPartyNLRCosts", "Unallocated", "BudgetThirdPartyNLRBillableCosts", "UnusedAllocation", "BudgetThirdPartyNLRNonBillableCosts", "FundingAvailable", "BudgetLaborAndThirdPartyNLRNonBillableCosts", "FundingVariance", "ActualThirdPartyNLRCosts", "FundingRemaining", "ActualThirdPartyNLRBillableCosts", "ActualThirdPartyNLRNonBillableCosts", "ActualLaborAndThirdPartyNLRNonBillableCosts", "ActualNetProfit", "PlannedNetProfit", "PlannedMargin", "LaborCostPercentComplete", "SuggestedActualNetRevenue", "SuggestedRevenueNLR", "SuggestedActualRevenueNLR", "Contract", "ContractPurchaseOrder", "CompletingPhase", "MilestoneType"] as const, + Task: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "ExternalID", "State", "Phase", "StartDate", "DueDate", "Duration", "ActualStartDate", "ActualEndDate", "TrackStatus", "StatusChangedOn", "Conflicts", "OnCriticalPath", "StartDateManuallySet", "DueDateManuallySet", "DurationManuallySet", "TrackStatusManuallySet", "EarliestStartDate", "LatestStartDate", "EarliestEndDate", "LatestEndDate", "ExpectedProgress", "SchedulingType", "ImportedFrom", "Importance", "Priority", "PercentCompleted", "PercentCompletedManuallySet", "Manager", "ChargedTypeManuallySet", "ChildrenCount", "SuccessorsCount", "PredecessorsCount", "AllUserResourcesAndPlaceholdersCount", "AttachmentsCount", "PostsCount", "NotesCount", "ConstraintsTypeManuallySet", "Reportable", "ReportableManuallySet", "Billable", "ChildShortcutCount", "Project", "WorkPolicy", "CommitLevel", "ReportingStartDate", "SYSID", "Work", "ActualEffort", "RemainingEffort", "WorkManuallySet", "RemainingEffortManuallySet", "WorkVariance", "ActualDuration", "StartDateVariance", "ActualCost", "DueDateVariance", "PlannedBudget", "DurationVariance", "ActualCostManuallySet", "PlannedBudgetManuallySet", "TimeTrackingEffort", "TimeTrackingCost", "FixedCost", "FixedPrice", "PercentInvested", "CostVariance", "TimeTrackingBilling", "EarnedValue", "PlannedRevenue", "CPI", "ActualRevenue", "SPI", "PlannedRevenueManuallySet", "ActualRevenueManuallySet", "Profitability", "PercentProfitability", "PlannedExpenses", "DirectPlannedExpenses", "ActualExpenses", "DirectActualExpenses", "ProjectedExpenses", "DirectProjectedExpenses", "PlannedBilledExpenses", "DirectPlannedBilledExpenses", "ActualBilledExpenses", "DirectActualBilledExpenses", "ProjectedBilledExpenses", "DirectProjectedBilledExpenses", "RevenueCurrencyType", "RevenueCurrencyTypeManuallySet", "CostCurrencyType", "CostCurrencyTypeManuallySet", "Pending", "IssuesCount", "LastUpdatedBySystemOn", "ActualEndDateManuallySet", "AllowReportingOnSubItems", "AllowReportingOnSubItemsManuallySet", "CommittedDate", "ResourcesAndPlaceholdersCount", "BudgetedHours", "EmailsCount", "CostBalance", "BudgetStatus", "BudgetStatusManuallySet", "RevenueBalance", "ActualEffortUpdatedFromTimesheets", "ActualEffortUpdatedFromTimesheetsManuallySet", "ParentProject", "SfExternalId", "SfExternalName", "InternalId", "OrderID", "SKU", "BaselineStartDate", "BaselineStartDateVariance", "BaselineDueDate", "BaselineDueDateVariance", "BaselineDuration", "BaselineDurationVariance", "BaselineWork", "BaselineWorkVariance", "BaselineCost", "BaselineCostsVariance", "BaselineRevenue", "BaselineRevenueVariance", "InternalStatus", "Deliverable", "DeliverableType", "Executable", "Parent", "PlannedAmount", "ChargedAmount", "TCPI", "TotalEstimatedCost", "Charged", "ChargedAmountManuallySet", "EstimatedStartDate", "RevenueEarnedValue", "EstimatedEndDate", "RPI", "EstimatedDuration", "RTCPI", "ReportableStartDate", "EntityType", "CompletnessDefinition", "ReportableEndDate", "TaskReportingPolicy", "ConflictType", "TaskReportingPolicyManuallySet", "FloatingTask", "IndividualReporting", "BaselineCreationDate", "AggregatedStopwatchesCount", "CalculateCompletenessBasedOnEfforts", "ActiveStopwatch", "CalculateCompletenessBasedOnEffortsManuallySet", "ObjectAlias", "StopwatchesCount", "LikesCount", "BudgetedHoursManuallySet", "CurrencyEAC", "PendingTimeTrackingEffort", "CurrencyREAC", "CurrencyETC", "ImageUrl", "CurrencyRETC", "SetByLeveling", "Template", "GeographicalRegion", "ResourceUtilizationCategory", "Country", "StateProvince", "ResourceUtilizationCategoryManuallySet", "ExpenseType", "BudgetCostOPEX", "ExpenseTypeManuallySet", "BudgetCostCAPEX", "BudgetCostNLR", "BudgetCostLR", "EntityOwner", "ActualCostOPEX", "ActualCostCAPEX", "ActualCostNLR", "ActualCostNLROpex", "ActualCostNLRCapex", "ActualCostLR", "ActualRevenueNLR", "PlannedRevenueNLR", "FinancialStart", "FinancialEnd", "FinancialOldStartDate", "RemainingForecastCostNLR", "RemainingForecastRevenueNLR", "CapexActualYTD", "OpexActualYTD", "CapexBudgetYTD", "OpexBudgetYTD", "FYForecastCostCapex", "FYForecastCostOpex", "FYForecastCost", "FYForecastatCompletionCost", "ProjectForecastatCompletionCost", "ActualBillableHours", "ActualNonBillableHours", "ResourceRateDate", "ResourceRateDateManuallySet", "LastReplanningDate", "FYBudgetedCost", "FYBudgetedCostCapex", "FYBudgetedCostOpex", "FYBudgetedCostNLR", "FYBudgetedCostLR", "FYExpectedRevenue", "FYForecastRevenue", "ExpectedRevenueLR", "FYExpectedRevenueLR", "PlannedProfit", "FYPlannedProfit", "UserResourcesCount", "AllUserResourcesCount", "ProjectCapexForecastatCompletionCost", "ProjectOpexForecastatCompletionCost", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "SuggestedNetRevenue", "Funding", "ExpectedNetRevenue", "FundingManuallySet", "ActualNetRevenue", "FundingGap", "SuggestedRevenue", "Allocation", "SuggestedActualRevenue", "AllocationManuallySet", "ActualNetProfitability", "SubAllocation", "PlannedNetProfitability", "SubAllocationManuallySet", "TargetMargin", "TotalAllocation", "BudgetThirdPartyNLRCosts", "Unallocated", "BudgetThirdPartyNLRBillableCosts", "UnusedAllocation", "BudgetThirdPartyNLRNonBillableCosts", "FundingAvailable", "BudgetLaborAndThirdPartyNLRNonBillableCosts", "FundingVariance", "ActualThirdPartyNLRCosts", "FundingRemaining", "ActualThirdPartyNLRBillableCosts", "ActualThirdPartyNLRNonBillableCosts", "ActualLaborAndThirdPartyNLRNonBillableCosts", "ActualNetProfit", "PlannedNetProfit", "PlannedMargin", "LaborCostPercentComplete", "SuggestedActualNetRevenue", "SuggestedRevenueNLR", "SuggestedActualRevenueNLR", "Contract", "ContractPurchaseOrder", "TaskType", "Milestone", "InstanceNumber", "OccurrenceStartDate"] as const, + RecurringTask: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "ExternalID", "State", "Phase", "StartDate", "DueDate", "Duration", "ActualStartDate", "ActualEndDate", "TrackStatus", "StatusChangedOn", "Conflicts", "OnCriticalPath", "StartDateManuallySet", "DueDateManuallySet", "DurationManuallySet", "TrackStatusManuallySet", "EarliestStartDate", "LatestStartDate", "EarliestEndDate", "LatestEndDate", "ExpectedProgress", "SchedulingType", "ImportedFrom", "Importance", "Priority", "PercentCompleted", "PercentCompletedManuallySet", "Manager", "ChargedTypeManuallySet", "ChildrenCount", "SuccessorsCount", "PredecessorsCount", "AllUserResourcesAndPlaceholdersCount", "AttachmentsCount", "PostsCount", "NotesCount", "ConstraintsTypeManuallySet", "Reportable", "ReportableManuallySet", "Billable", "ChildShortcutCount", "Project", "WorkPolicy", "CommitLevel", "ReportingStartDate", "SYSID", "Work", "ActualEffort", "RemainingEffort", "WorkManuallySet", "RemainingEffortManuallySet", "WorkVariance", "ActualDuration", "StartDateVariance", "ActualCost", "DueDateVariance", "PlannedBudget", "DurationVariance", "ActualCostManuallySet", "PlannedBudgetManuallySet", "TimeTrackingEffort", "TimeTrackingCost", "FixedCost", "FixedPrice", "PercentInvested", "CostVariance", "TimeTrackingBilling", "EarnedValue", "PlannedRevenue", "CPI", "ActualRevenue", "SPI", "PlannedRevenueManuallySet", "ActualRevenueManuallySet", "Profitability", "PercentProfitability", "PlannedExpenses", "DirectPlannedExpenses", "ActualExpenses", "DirectActualExpenses", "ProjectedExpenses", "DirectProjectedExpenses", "PlannedBilledExpenses", "DirectPlannedBilledExpenses", "ActualBilledExpenses", "DirectActualBilledExpenses", "ProjectedBilledExpenses", "DirectProjectedBilledExpenses", "RevenueCurrencyType", "RevenueCurrencyTypeManuallySet", "CostCurrencyType", "CostCurrencyTypeManuallySet", "Pending", "IssuesCount", "LastUpdatedBySystemOn", "ActualEndDateManuallySet", "AllowReportingOnSubItems", "AllowReportingOnSubItemsManuallySet", "CommittedDate", "ResourcesAndPlaceholdersCount", "BudgetedHours", "EmailsCount", "CostBalance", "BudgetStatus", "BudgetStatusManuallySet", "RevenueBalance", "ActualEffortUpdatedFromTimesheets", "ActualEffortUpdatedFromTimesheetsManuallySet", "ParentProject", "SfExternalId", "SfExternalName", "InternalId", "OrderID", "SKU", "BaselineStartDate", "BaselineStartDateVariance", "BaselineDueDate", "BaselineDueDateVariance", "BaselineDuration", "BaselineDurationVariance", "BaselineWork", "BaselineWorkVariance", "BaselineCost", "BaselineCostsVariance", "BaselineRevenue", "BaselineRevenueVariance", "InternalStatus", "Deliverable", "DeliverableType", "Executable", "Parent", "PlannedAmount", "ChargedAmount", "TCPI", "TotalEstimatedCost", "Charged", "ChargedAmountManuallySet", "EstimatedStartDate", "RevenueEarnedValue", "EstimatedEndDate", "RPI", "EstimatedDuration", "RTCPI", "ReportableStartDate", "EntityType", "CompletnessDefinition", "ReportableEndDate", "TaskReportingPolicy", "ConflictType", "TaskReportingPolicyManuallySet", "FloatingTask", "IndividualReporting", "BaselineCreationDate", "AggregatedStopwatchesCount", "CalculateCompletenessBasedOnEfforts", "ActiveStopwatch", "CalculateCompletenessBasedOnEffortsManuallySet", "ObjectAlias", "StopwatchesCount", "LikesCount", "BudgetedHoursManuallySet", "CurrencyEAC", "PendingTimeTrackingEffort", "CurrencyREAC", "CurrencyETC", "ImageUrl", "CurrencyRETC", "SetByLeveling", "Template", "GeographicalRegion", "ResourceUtilizationCategory", "Country", "StateProvince", "ResourceUtilizationCategoryManuallySet", "ExpenseType", "BudgetCostOPEX", "ExpenseTypeManuallySet", "BudgetCostCAPEX", "BudgetCostNLR", "BudgetCostLR", "EntityOwner", "ActualCostOPEX", "ActualCostCAPEX", "ActualCostNLR", "ActualCostNLROpex", "ActualCostNLRCapex", "ActualCostLR", "ActualRevenueNLR", "PlannedRevenueNLR", "FinancialStart", "FinancialEnd", "FinancialOldStartDate", "RemainingForecastCostNLR", "RemainingForecastRevenueNLR", "CapexActualYTD", "OpexActualYTD", "CapexBudgetYTD", "OpexBudgetYTD", "FYForecastCostCapex", "FYForecastCostOpex", "FYForecastCost", "FYForecastatCompletionCost", "ProjectForecastatCompletionCost", "ActualBillableHours", "ActualNonBillableHours", "ResourceRateDate", "ResourceRateDateManuallySet", "LastReplanningDate", "FYBudgetedCost", "FYBudgetedCostCapex", "FYBudgetedCostOpex", "FYBudgetedCostNLR", "FYBudgetedCostLR", "FYExpectedRevenue", "FYForecastRevenue", "ExpectedRevenueLR", "FYExpectedRevenueLR", "PlannedProfit", "FYPlannedProfit", "UserResourcesCount", "AllUserResourcesCount", "ProjectCapexForecastatCompletionCost", "ProjectOpexForecastatCompletionCost", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "SuggestedNetRevenue", "Funding", "ExpectedNetRevenue", "FundingManuallySet", "ActualNetRevenue", "FundingGap", "SuggestedRevenue", "Allocation", "SuggestedActualRevenue", "AllocationManuallySet", "ActualNetProfitability", "SubAllocation", "PlannedNetProfitability", "SubAllocationManuallySet", "TargetMargin", "TotalAllocation", "BudgetThirdPartyNLRCosts", "Unallocated", "BudgetThirdPartyNLRBillableCosts", "UnusedAllocation", "BudgetThirdPartyNLRNonBillableCosts", "FundingAvailable", "BudgetLaborAndThirdPartyNLRNonBillableCosts", "FundingVariance", "ActualThirdPartyNLRCosts", "FundingRemaining", "ActualThirdPartyNLRBillableCosts", "ActualThirdPartyNLRNonBillableCosts", "ActualLaborAndThirdPartyNLRNonBillableCosts", "ActualNetProfit", "PlannedNetProfit", "PlannedMargin", "LaborCostPercentComplete", "SuggestedActualNetRevenue", "SuggestedRevenueNLR", "SuggestedActualRevenueNLR", "Contract", "ContractPurchaseOrder", "TaskType", "Milestone", "RecurrenceType", "RecurrenceInterval", "WorkdaysOnly", "WeekDays", "RecurrenceDayOfMonth", "RecurrenceMonthOfYear", "RecurrenceStartDate", "RecurrenceEndDate", "OccurenceDuration", "Occurrences"] as const, + GenericTask: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "ExternalID", "State", "Phase", "StartDate", "DueDate", "Duration", "ActualStartDate", "ActualEndDate", "TrackStatus", "StatusChangedOn", "Conflicts", "OnCriticalPath", "StartDateManuallySet", "DueDateManuallySet", "DurationManuallySet", "TrackStatusManuallySet", "EarliestStartDate", "LatestStartDate", "EarliestEndDate", "LatestEndDate", "ExpectedProgress", "SchedulingType", "ImportedFrom", "Importance", "Priority", "PercentCompleted", "PercentCompletedManuallySet", "Manager", "ChargedTypeManuallySet", "ChildrenCount", "SuccessorsCount", "PredecessorsCount", "AllUserResourcesAndPlaceholdersCount", "AttachmentsCount", "PostsCount", "NotesCount", "ConstraintsTypeManuallySet", "Reportable", "ReportableManuallySet", "Billable", "ChildShortcutCount", "Project", "WorkPolicy", "CommitLevel", "ReportingStartDate", "SYSID", "Work", "ActualEffort", "RemainingEffort", "WorkManuallySet", "RemainingEffortManuallySet", "WorkVariance", "ActualDuration", "StartDateVariance", "ActualCost", "DueDateVariance", "PlannedBudget", "DurationVariance", "ActualCostManuallySet", "PlannedBudgetManuallySet", "TimeTrackingEffort", "TimeTrackingCost", "FixedCost", "FixedPrice", "PercentInvested", "CostVariance", "TimeTrackingBilling", "EarnedValue", "PlannedRevenue", "CPI", "ActualRevenue", "SPI", "PlannedRevenueManuallySet", "ActualRevenueManuallySet", "Profitability", "PercentProfitability", "PlannedExpenses", "DirectPlannedExpenses", "ActualExpenses", "DirectActualExpenses", "ProjectedExpenses", "DirectProjectedExpenses", "PlannedBilledExpenses", "DirectPlannedBilledExpenses", "ActualBilledExpenses", "DirectActualBilledExpenses", "ProjectedBilledExpenses", "DirectProjectedBilledExpenses", "RevenueCurrencyType", "RevenueCurrencyTypeManuallySet", "CostCurrencyType", "CostCurrencyTypeManuallySet", "Pending", "IssuesCount", "LastUpdatedBySystemOn", "ActualEndDateManuallySet", "AllowReportingOnSubItems", "AllowReportingOnSubItemsManuallySet", "CommittedDate", "ResourcesAndPlaceholdersCount", "BudgetedHours", "EmailsCount", "CostBalance", "BudgetStatus", "BudgetStatusManuallySet", "RevenueBalance", "ActualEffortUpdatedFromTimesheets", "ActualEffortUpdatedFromTimesheetsManuallySet", "ParentProject", "SfExternalId", "SfExternalName", "InternalId", "OrderID", "SKU", "BaselineStartDate", "BaselineStartDateVariance", "BaselineDueDate", "BaselineDueDateVariance", "BaselineDuration", "BaselineDurationVariance", "BaselineWork", "BaselineWorkVariance", "BaselineCost", "BaselineCostsVariance", "BaselineRevenue", "BaselineRevenueVariance", "InternalStatus", "Deliverable", "DeliverableType", "Executable", "Parent", "PlannedAmount", "ChargedAmount", "TCPI", "TotalEstimatedCost", "Charged", "ChargedAmountManuallySet", "EstimatedStartDate", "RevenueEarnedValue", "EstimatedEndDate", "RPI", "EstimatedDuration", "RTCPI", "ReportableStartDate", "EntityType", "CompletnessDefinition", "ReportableEndDate", "TaskReportingPolicy", "ConflictType", "TaskReportingPolicyManuallySet", "FloatingTask", "IndividualReporting", "BaselineCreationDate", "AggregatedStopwatchesCount", "CalculateCompletenessBasedOnEfforts", "ActiveStopwatch", "CalculateCompletenessBasedOnEffortsManuallySet", "ObjectAlias", "StopwatchesCount", "LikesCount", "BudgetedHoursManuallySet", "CurrencyEAC", "PendingTimeTrackingEffort", "CurrencyREAC", "CurrencyETC", "ImageUrl", "CurrencyRETC", "SetByLeveling", "Template", "GeographicalRegion", "ResourceUtilizationCategory", "Country", "StateProvince", "ResourceUtilizationCategoryManuallySet", "ExpenseType", "BudgetCostOPEX", "ExpenseTypeManuallySet", "BudgetCostCAPEX", "BudgetCostNLR", "BudgetCostLR", "EntityOwner", "ActualCostOPEX", "ActualCostCAPEX", "ActualCostNLR", "ActualCostNLROpex", "ActualCostNLRCapex", "ActualCostLR", "ActualRevenueNLR", "PlannedRevenueNLR", "FinancialStart", "FinancialEnd", "FinancialOldStartDate", "RemainingForecastCostNLR", "RemainingForecastRevenueNLR", "CapexActualYTD", "OpexActualYTD", "CapexBudgetYTD", "OpexBudgetYTD", "FYForecastCostCapex", "FYForecastCostOpex", "FYForecastCost", "FYForecastatCompletionCost", "ProjectForecastatCompletionCost", "ActualBillableHours", "ActualNonBillableHours", "ResourceRateDate", "ResourceRateDateManuallySet", "LastReplanningDate", "FYBudgetedCost", "FYBudgetedCostCapex", "FYBudgetedCostOpex", "FYBudgetedCostNLR", "FYBudgetedCostLR", "FYExpectedRevenue", "FYForecastRevenue", "ExpectedRevenueLR", "FYExpectedRevenueLR", "PlannedProfit", "FYPlannedProfit", "UserResourcesCount", "AllUserResourcesCount", "ProjectCapexForecastatCompletionCost", "ProjectOpexForecastatCompletionCost", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "SuggestedNetRevenue", "Funding", "ExpectedNetRevenue", "FundingManuallySet", "ActualNetRevenue", "FundingGap", "SuggestedRevenue", "Allocation", "SuggestedActualRevenue", "AllocationManuallySet", "ActualNetProfitability", "SubAllocation", "PlannedNetProfitability", "SubAllocationManuallySet", "TargetMargin", "TotalAllocation", "BudgetThirdPartyNLRCosts", "Unallocated", "BudgetThirdPartyNLRBillableCosts", "UnusedAllocation", "BudgetThirdPartyNLRNonBillableCosts", "FundingAvailable", "BudgetLaborAndThirdPartyNLRNonBillableCosts", "FundingVariance", "ActualThirdPartyNLRCosts", "FundingRemaining", "ActualThirdPartyNLRBillableCosts", "ActualThirdPartyNLRNonBillableCosts", "ActualLaborAndThirdPartyNLRNonBillableCosts", "ActualNetProfit", "PlannedNetProfit", "PlannedMargin", "LaborCostPercentComplete", "SuggestedActualNetRevenue", "SuggestedRevenueNLR", "SuggestedActualRevenueNLR", "Contract", "ContractPurchaseOrder", "TaskType", "Milestone"] as const, + PlanningComponent: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "ExternalID", "State", "Phase", "StartDate", "DueDate", "Duration", "ActualStartDate", "ActualEndDate", "TrackStatus", "StatusChangedOn", "Conflicts", "OnCriticalPath", "StartDateManuallySet", "DueDateManuallySet", "DurationManuallySet", "TrackStatusManuallySet", "EarliestStartDate", "LatestStartDate", "EarliestEndDate", "LatestEndDate", "ExpectedProgress", "SchedulingType", "ImportedFrom", "Importance", "Priority", "PercentCompleted", "PercentCompletedManuallySet", "Manager", "ChargedTypeManuallySet", "ChildrenCount", "SuccessorsCount", "PredecessorsCount", "AllUserResourcesAndPlaceholdersCount", "AttachmentsCount", "PostsCount", "NotesCount", "ConstraintsTypeManuallySet", "Reportable", "ReportableManuallySet", "Billable", "ChildShortcutCount", "Project", "WorkPolicy", "CommitLevel", "ReportingStartDate", "SYSID", "Work", "ActualEffort", "RemainingEffort", "WorkManuallySet", "RemainingEffortManuallySet", "WorkVariance", "ActualDuration", "StartDateVariance", "ActualCost", "DueDateVariance", "PlannedBudget", "DurationVariance", "ActualCostManuallySet", "PlannedBudgetManuallySet", "TimeTrackingEffort", "TimeTrackingCost", "FixedCost", "FixedPrice", "PercentInvested", "CostVariance", "TimeTrackingBilling", "EarnedValue", "PlannedRevenue", "CPI", "ActualRevenue", "SPI", "PlannedRevenueManuallySet", "ActualRevenueManuallySet", "Profitability", "PercentProfitability", "PlannedExpenses", "DirectPlannedExpenses", "ActualExpenses", "DirectActualExpenses", "ProjectedExpenses", "DirectProjectedExpenses", "PlannedBilledExpenses", "DirectPlannedBilledExpenses", "ActualBilledExpenses", "DirectActualBilledExpenses", "ProjectedBilledExpenses", "DirectProjectedBilledExpenses", "RevenueCurrencyType", "RevenueCurrencyTypeManuallySet", "CostCurrencyType", "CostCurrencyTypeManuallySet", "Pending", "IssuesCount", "LastUpdatedBySystemOn", "ActualEndDateManuallySet", "AllowReportingOnSubItems", "AllowReportingOnSubItemsManuallySet", "CommittedDate", "ResourcesAndPlaceholdersCount", "BudgetedHours", "EmailsCount", "CostBalance", "BudgetStatus", "BudgetStatusManuallySet", "RevenueBalance", "ActualEffortUpdatedFromTimesheets", "ActualEffortUpdatedFromTimesheetsManuallySet", "ParentProject", "SfExternalId", "SfExternalName", "InternalId", "OrderID", "SKU", "BaselineStartDate", "BaselineStartDateVariance", "BaselineDueDate", "BaselineDueDateVariance", "BaselineDuration", "BaselineDurationVariance", "BaselineWork", "BaselineWorkVariance", "BaselineCost", "BaselineCostsVariance", "BaselineRevenue", "BaselineRevenueVariance", "InternalStatus", "Deliverable", "DeliverableType", "Executable", "Parent", "PlannedAmount", "ChargedAmount", "TCPI", "TotalEstimatedCost", "Charged", "ChargedAmountManuallySet", "EstimatedStartDate", "RevenueEarnedValue", "EstimatedEndDate", "RPI", "EstimatedDuration", "RTCPI", "ReportableStartDate", "EntityType", "CompletnessDefinition", "ReportableEndDate", "TaskReportingPolicy", "ConflictType", "TaskReportingPolicyManuallySet", "FloatingTask", "IndividualReporting", "BaselineCreationDate", "AggregatedStopwatchesCount", "CalculateCompletenessBasedOnEfforts", "ActiveStopwatch", "CalculateCompletenessBasedOnEffortsManuallySet", "ObjectAlias", "StopwatchesCount", "LikesCount", "BudgetedHoursManuallySet", "CurrencyEAC", "PendingTimeTrackingEffort", "CurrencyREAC", "CurrencyETC", "ImageUrl", "CurrencyRETC", "SetByLeveling", "Template", "GeographicalRegion", "ResourceUtilizationCategory", "Country", "StateProvince", "ResourceUtilizationCategoryManuallySet", "ExpenseType", "BudgetCostOPEX", "ExpenseTypeManuallySet", "BudgetCostCAPEX", "BudgetCostNLR", "BudgetCostLR", "EntityOwner", "ActualCostOPEX", "ActualCostCAPEX", "ActualCostNLR", "ActualCostNLROpex", "ActualCostNLRCapex", "ActualCostLR", "ActualRevenueNLR", "PlannedRevenueNLR", "FinancialStart", "FinancialEnd", "FinancialOldStartDate", "RemainingForecastCostNLR", "RemainingForecastRevenueNLR", "CapexActualYTD", "OpexActualYTD", "CapexBudgetYTD", "OpexBudgetYTD", "FYForecastCostCapex", "FYForecastCostOpex", "FYForecastCost", "FYForecastatCompletionCost", "ProjectForecastatCompletionCost", "ActualBillableHours", "ActualNonBillableHours", "ResourceRateDate", "ResourceRateDateManuallySet", "LastReplanningDate", "FYBudgetedCost", "FYBudgetedCostCapex", "FYBudgetedCostOpex", "FYBudgetedCostNLR", "FYBudgetedCostLR", "FYExpectedRevenue", "FYForecastRevenue", "ExpectedRevenueLR", "FYExpectedRevenueLR", "PlannedProfit", "FYPlannedProfit", "UserResourcesCount", "AllUserResourcesCount", "ProjectCapexForecastatCompletionCost", "ProjectOpexForecastatCompletionCost", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "SuggestedNetRevenue", "Funding", "ExpectedNetRevenue", "FundingManuallySet", "ActualNetRevenue", "FundingGap", "SuggestedRevenue", "Allocation", "SuggestedActualRevenue", "AllocationManuallySet", "ActualNetProfitability", "SubAllocation", "PlannedNetProfitability", "SubAllocationManuallySet", "TargetMargin", "TotalAllocation", "BudgetThirdPartyNLRCosts", "Unallocated", "BudgetThirdPartyNLRBillableCosts", "UnusedAllocation", "BudgetThirdPartyNLRNonBillableCosts", "FundingAvailable", "BudgetLaborAndThirdPartyNLRNonBillableCosts", "FundingVariance", "ActualThirdPartyNLRCosts", "FundingRemaining", "ActualThirdPartyNLRBillableCosts", "ActualThirdPartyNLRNonBillableCosts", "ActualLaborAndThirdPartyNLRNonBillableCosts", "ActualNetProfit", "PlannedNetProfit", "PlannedMargin", "LaborCostPercentComplete", "SuggestedActualNetRevenue", "SuggestedRevenueNLR", "SuggestedActualRevenueNLR", "Contract", "ContractPurchaseOrder"] as const, + Project: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "ExternalID", "State", "Phase", "StartDate", "DueDate", "Duration", "ActualStartDate", "ActualEndDate", "TrackStatus", "StatusChangedOn", "Conflicts", "OnCriticalPath", "StartDateManuallySet", "DueDateManuallySet", "DurationManuallySet", "TrackStatusManuallySet", "EarliestStartDate", "LatestStartDate", "EarliestEndDate", "LatestEndDate", "ExpectedProgress", "SchedulingType", "ImportedFrom", "Importance", "Priority", "PercentCompleted", "PercentCompletedManuallySet", "Manager", "ChargedTypeManuallySet", "ChildrenCount", "SuccessorsCount", "PredecessorsCount", "AllUserResourcesAndPlaceholdersCount", "AttachmentsCount", "PostsCount", "NotesCount", "ConstraintsTypeManuallySet", "Reportable", "ReportableManuallySet", "Billable", "ChildShortcutCount", "Project", "WorkPolicy", "CommitLevel", "ReportingStartDate", "SYSID", "Work", "ActualEffort", "RemainingEffort", "WorkManuallySet", "RemainingEffortManuallySet", "WorkVariance", "ActualDuration", "StartDateVariance", "ActualCost", "DueDateVariance", "PlannedBudget", "DurationVariance", "ActualCostManuallySet", "PlannedBudgetManuallySet", "TimeTrackingEffort", "TimeTrackingCost", "FixedCost", "FixedPrice", "PercentInvested", "CostVariance", "TimeTrackingBilling", "EarnedValue", "PlannedRevenue", "CPI", "ActualRevenue", "SPI", "PlannedRevenueManuallySet", "ActualRevenueManuallySet", "Profitability", "PercentProfitability", "PlannedExpenses", "DirectPlannedExpenses", "ActualExpenses", "DirectActualExpenses", "ProjectedExpenses", "DirectProjectedExpenses", "PlannedBilledExpenses", "DirectPlannedBilledExpenses", "ActualBilledExpenses", "DirectActualBilledExpenses", "ProjectedBilledExpenses", "DirectProjectedBilledExpenses", "RevenueCurrencyType", "RevenueCurrencyTypeManuallySet", "CostCurrencyType", "CostCurrencyTypeManuallySet", "Pending", "IssuesCount", "LastUpdatedBySystemOn", "ActualEndDateManuallySet", "AllowReportingOnSubItems", "AllowReportingOnSubItemsManuallySet", "CommittedDate", "ResourcesAndPlaceholdersCount", "BudgetedHours", "EmailsCount", "CostBalance", "BudgetStatus", "BudgetStatusManuallySet", "RevenueBalance", "ActualEffortUpdatedFromTimesheets", "ActualEffortUpdatedFromTimesheetsManuallySet", "ParentProject", "SfExternalId", "SfExternalName", "InternalId", "OrderID", "SKU", "BaselineStartDate", "BaselineStartDateVariance", "BaselineDueDate", "BaselineDueDateVariance", "BaselineDuration", "BaselineDurationVariance", "BaselineWork", "BaselineWorkVariance", "BaselineCost", "BaselineCostsVariance", "BaselineRevenue", "BaselineRevenueVariance", "InternalStatus", "Deliverable", "DeliverableType", "Executable", "Parent", "PlannedAmount", "ChargedAmount", "TCPI", "TotalEstimatedCost", "Charged", "ChargedAmountManuallySet", "EstimatedStartDate", "RevenueEarnedValue", "EstimatedEndDate", "RPI", "EstimatedDuration", "RTCPI", "ReportableStartDate", "EntityType", "CompletnessDefinition", "ReportableEndDate", "TaskReportingPolicy", "ConflictType", "TaskReportingPolicyManuallySet", "FloatingTask", "IndividualReporting", "BaselineCreationDate", "AggregatedStopwatchesCount", "CalculateCompletenessBasedOnEfforts", "ActiveStopwatch", "CalculateCompletenessBasedOnEffortsManuallySet", "ObjectAlias", "StopwatchesCount", "LikesCount", "BudgetedHoursManuallySet", "CurrencyEAC", "PendingTimeTrackingEffort", "CurrencyREAC", "CurrencyETC", "ImageUrl", "CurrencyRETC", "SetByLeveling", "Template", "GeographicalRegion", "ResourceUtilizationCategory", "Country", "StateProvince", "ResourceUtilizationCategoryManuallySet", "ExpenseType", "BudgetCostOPEX", "ExpenseTypeManuallySet", "BudgetCostCAPEX", "BudgetCostNLR", "BudgetCostLR", "EntityOwner", "ActualCostOPEX", "ActualCostCAPEX", "ActualCostNLR", "ActualCostNLROpex", "ActualCostNLRCapex", "ActualCostLR", "ActualRevenueNLR", "PlannedRevenueNLR", "FinancialStart", "FinancialEnd", "FinancialOldStartDate", "RemainingForecastCostNLR", "RemainingForecastRevenueNLR", "CapexActualYTD", "OpexActualYTD", "CapexBudgetYTD", "OpexBudgetYTD", "FYForecastCostCapex", "FYForecastCostOpex", "FYForecastCost", "FYForecastatCompletionCost", "ProjectForecastatCompletionCost", "ActualBillableHours", "ActualNonBillableHours", "ResourceRateDate", "ResourceRateDateManuallySet", "LastReplanningDate", "FYBudgetedCost", "FYBudgetedCostCapex", "FYBudgetedCostOpex", "FYBudgetedCostNLR", "FYBudgetedCostLR", "FYExpectedRevenue", "FYForecastRevenue", "ExpectedRevenueLR", "FYExpectedRevenueLR", "PlannedProfit", "FYPlannedProfit", "UserResourcesCount", "AllUserResourcesCount", "ProjectCapexForecastatCompletionCost", "ProjectOpexForecastatCompletionCost", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "SuggestedNetRevenue", "Funding", "ExpectedNetRevenue", "FundingManuallySet", "ActualNetRevenue", "FundingGap", "SuggestedRevenue", "Allocation", "SuggestedActualRevenue", "AllocationManuallySet", "ActualNetProfitability", "SubAllocation", "PlannedNetProfitability", "SubAllocationManuallySet", "TargetMargin", "TotalAllocation", "BudgetThirdPartyNLRCosts", "Unallocated", "BudgetThirdPartyNLRBillableCosts", "UnusedAllocation", "BudgetThirdPartyNLRNonBillableCosts", "FundingAvailable", "BudgetLaborAndThirdPartyNLRNonBillableCosts", "FundingVariance", "ActualThirdPartyNLRCosts", "FundingRemaining", "ActualThirdPartyNLRBillableCosts", "ActualThirdPartyNLRNonBillableCosts", "ActualLaborAndThirdPartyNLRNonBillableCosts", "ActualNetProfit", "PlannedNetProfit", "PlannedMargin", "LaborCostPercentComplete", "SuggestedActualNetRevenue", "SuggestedRevenueNLR", "SuggestedActualRevenueNLR", "Contract", "ContractPurchaseOrder", "ProjectType", "ProjectTagging", "ProjectManager", "RollupFinancialAndEffortDataFromShortcut", "RollupFinancialDataFromShortcutManuallySet", "RollupProgressAndDatesFromShortcut", "RollupProgressAndDatesFromShortcutManuallySet", "ProjectSponsor", "IgnoreResourceCalendars", "IgnoreResourceCalendarsManuallySet", "HoldingNotes", "ClosingNotes", "LastProjectCalculation", "IsPortfolio", "ProgressUpdateFrequency", "ProgressUpdateFrequencyManuallySet", "LaborBudget", "Justification", "BusinessAlignment", "PlannedSavings", "ExpectedBusinessValue", "GoalsAchieved", "ExpectedROI", "BusinessImpact", "Score", "ProjectGoals", "ProjectSize", "OverallSummary", "ScheduleSummary", "BudgetSummary", "AdditionalComments", "Risks", "Mitigation", "RisksRate", "RisksImpact", "RisksTotalScore", "Benefit", "BenefitManuallySet", "Alignment", "InvestmentType", "Required", "BudgetVariancePercent", "Program", "DefaultIntegrationPath", "LastFPCalculationDate", "RateCard", "BillingType", "BillingTypeManuallySet", "PermissionInheritanceForExternalUsers", "NLRExchangeRateDateOptionSet", "CurrentFinancialPeriodStart", "CurrentFinancialPeriodStartSet", "UpdateForecastDefault", "UpdateForecastDefaultManuallySet", "ForecastUsingDateEffectiveRates", "ForecastUsingDateEffectiveRatesSet", "CurrentFinancialPeriodStartUpdated", "CurrentFinancialPeriodStartUpdatedSet", "SentimentStatus", "SentimentScore", "SentimentCalculated", "SentimentChanged", "SentimentLatest", "CustomerCount", "TimeApproval", "CalculateFinancials", "RemainingBudget", "BudgetVariance"] as const, + Program: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "ExternalID", "State", "Phase", "StartDate", "DueDate", "Duration", "ActualStartDate", "ActualEndDate", "TrackStatus", "StatusChangedOn", "Conflicts", "StartDateManuallySet", "DueDateManuallySet", "DurationManuallySet", "TrackStatusManuallySet", "EarliestStartDate", "LatestStartDate", "EarliestEndDate", "LatestEndDate", "ExpectedProgress", "SchedulingType", "ImportedFrom", "Importance", "Priority", "PercentCompleted", "PercentCompletedManuallySet", "Manager", "ChargedTypeManuallySet", "ChildrenCount", "SuccessorsCount", "PredecessorsCount", "AllUserResourcesAndPlaceholdersCount", "AttachmentsCount", "PostsCount", "NotesCount", "ConstraintsTypeManuallySet", "ReportableManuallySet", "Billable", "Project", "ReportingStartDate", "SYSID", "Work", "ActualEffort", "RemainingEffort", "WorkManuallySet", "RemainingEffortManuallySet", "WorkVariance", "ActualDuration", "StartDateVariance", "ActualCost", "DueDateVariance", "PlannedBudget", "DurationVariance", "ActualCostManuallySet", "PlannedBudgetManuallySet", "TimeTrackingEffort", "TimeTrackingCost", "FixedCost", "FixedPrice", "PercentInvested", "CostVariance", "TimeTrackingBilling", "EarnedValue", "PlannedRevenue", "CPI", "ActualRevenue", "SPI", "PlannedRevenueManuallySet", "ActualRevenueManuallySet", "Profitability", "PercentProfitability", "PlannedExpenses", "DirectPlannedExpenses", "ActualExpenses", "DirectActualExpenses", "ProjectedExpenses", "DirectProjectedExpenses", "PlannedBilledExpenses", "DirectPlannedBilledExpenses", "ActualBilledExpenses", "DirectActualBilledExpenses", "ProjectedBilledExpenses", "DirectProjectedBilledExpenses", "RevenueCurrencyType", "RevenueCurrencyTypeManuallySet", "CostCurrencyType", "CostCurrencyTypeManuallySet", "IssuesCount", "LastUpdatedBySystemOn", "ActualEndDateManuallySet", "AllowReportingOnSubItems", "AllowReportingOnSubItemsManuallySet", "CommittedDate", "ResourcesAndPlaceholdersCount", "BudgetedHours", "EmailsCount", "CostBalance", "BudgetStatus", "BudgetStatusManuallySet", "RevenueBalance", "ActualEffortUpdatedFromTimesheets", "ActualEffortUpdatedFromTimesheetsManuallySet", "SfExternalId", "SfExternalName", "InternalId", "SKU", "BaselineStartDate", "BaselineStartDateVariance", "BaselineDueDate", "BaselineDueDateVariance", "BaselineDuration", "BaselineDurationVariance", "BaselineWork", "BaselineWorkVariance", "BaselineCost", "BaselineCostsVariance", "BaselineRevenue", "BaselineRevenueVariance", "InternalStatus", "PlannedAmount", "ChargedAmount", "TCPI", "TotalEstimatedCost", "Charged", "ChargedAmountManuallySet", "EstimatedStartDate", "RevenueEarnedValue", "EstimatedEndDate", "RPI", "EstimatedDuration", "RTCPI", "ReportableStartDate", "EntityType", "CompletnessDefinition", "ReportableEndDate", "TaskReportingPolicy", "TaskReportingPolicyManuallySet", "FloatingTask", "BaselineCreationDate", "CalculateCompletenessBasedOnEfforts", "CalculateCompletenessBasedOnEffortsManuallySet", "StopwatchesCount", "LikesCount", "BudgetedHoursManuallySet", "CurrencyEAC", "PendingTimeTrackingEffort", "CurrencyREAC", "CurrencyETC", "ImageUrl", "CurrencyRETC", "SetByLeveling", "Template", "GeographicalRegion", "ResourceUtilizationCategory", "Country", "StateProvince", "ResourceUtilizationCategoryManuallySet", "ExpenseType", "BudgetCostOPEX", "ExpenseTypeManuallySet", "BudgetCostCAPEX", "BudgetCostNLR", "BudgetCostLR", "EntityOwner", "ActualCostOPEX", "ActualCostCAPEX", "ActualCostNLR", "ActualCostNLROpex", "ActualCostNLRCapex", "ActualCostLR", "ActualRevenueNLR", "PlannedRevenueNLR", "FinancialStart", "FinancialEnd", "FinancialOldStartDate", "RemainingForecastCostNLR", "RemainingForecastRevenueNLR", "CapexActualYTD", "OpexActualYTD", "CapexBudgetYTD", "OpexBudgetYTD", "FYForecastCostCapex", "FYForecastCostOpex", "FYForecastCost", "FYForecastatCompletionCost", "ProjectForecastatCompletionCost", "ActualBillableHours", "ActualNonBillableHours", "ResourceRateDate", "ResourceRateDateManuallySet", "LastReplanningDate", "FYBudgetedCost", "FYBudgetedCostCapex", "FYBudgetedCostOpex", "FYBudgetedCostNLR", "FYBudgetedCostLR", "FYExpectedRevenue", "FYForecastRevenue", "ExpectedRevenueLR", "FYExpectedRevenueLR", "PlannedProfit", "FYPlannedProfit", "UserResourcesCount", "AllUserResourcesCount", "ProjectCapexForecastatCompletionCost", "ProjectOpexForecastatCompletionCost", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "SuggestedNetRevenue", "Funding", "ExpectedNetRevenue", "FundingManuallySet", "ActualNetRevenue", "FundingGap", "SuggestedRevenue", "Allocation", "SuggestedActualRevenue", "AllocationManuallySet", "ActualNetProfitability", "SubAllocation", "PlannedNetProfitability", "SubAllocationManuallySet", "TargetMargin", "TotalAllocation", "BudgetThirdPartyNLRCosts", "Unallocated", "BudgetThirdPartyNLRBillableCosts", "UnusedAllocation", "BudgetThirdPartyNLRNonBillableCosts", "FundingAvailable", "BudgetLaborAndThirdPartyNLRNonBillableCosts", "FundingVariance", "ActualThirdPartyNLRCosts", "FundingRemaining", "ActualThirdPartyNLRBillableCosts", "ActualThirdPartyNLRNonBillableCosts", "ActualLaborAndThirdPartyNLRNonBillableCosts", "ActualNetProfit", "PlannedNetProfit", "PlannedMargin", "LaborCostPercentComplete", "SuggestedActualNetRevenue", "SuggestedRevenueNLR", "SuggestedActualRevenueNLR", "ProjectManager", "RollupFinancialAndEffortDataFromShortcut", "RollupFinancialDataFromShortcutManuallySet", "RollupProgressAndDatesFromShortcut", "RollupProgressAndDatesFromShortcutManuallySet", "IgnoreResourceCalendars", "IgnoreResourceCalendarsManuallySet", "HoldingNotes", "ClosingNotes", "LastProjectCalculation", "ProgressUpdateFrequencyManuallySet", "LaborBudget", "Justification", "BusinessAlignment", "PlannedSavings", "ExpectedBusinessValue", "ExpectedROI", "ProgramGoals", "OverallSummary", "ScheduleSummary", "BudgetSummary", "AdditionalComments", "Risks", "RisksRate", "RisksImpact", "RisksTotalScore", "Benefit", "BenefitManuallySet", "InvestmentType", "BudgetVariancePercent", "Program", "DefaultIntegrationPath", "LastFPCalculationDate", "RateCard", "BillingType", "BillingTypeManuallySet", "PermissionInheritanceForExternalUsers", "NLRExchangeRateDateOptionSet", "CurrentFinancialPeriodStart", "CurrentFinancialPeriodStartSet", "UpdateForecastDefault", "UpdateForecastDefaultManuallySet", "ForecastUsingDateEffectiveRates", "ForecastUsingDateEffectiveRatesSet", "CurrentFinancialPeriodStartUpdated", "CurrentFinancialPeriodStartUpdatedSet", "SentimentStatus", "SentimentScore", "SentimentCalculated", "SentimentChanged", "SentimentLatest", "RemainingBudget", "BudgetVariance", "ProgramManager"] as const, + GenericProject: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "ExternalID", "State", "Phase", "StartDate", "DueDate", "Duration", "ActualStartDate", "ActualEndDate", "TrackStatus", "StatusChangedOn", "Conflicts", "OnCriticalPath", "StartDateManuallySet", "DueDateManuallySet", "DurationManuallySet", "TrackStatusManuallySet", "EarliestStartDate", "LatestStartDate", "EarliestEndDate", "LatestEndDate", "ExpectedProgress", "SchedulingType", "ImportedFrom", "Importance", "Priority", "PercentCompleted", "PercentCompletedManuallySet", "Manager", "ChargedTypeManuallySet", "ChildrenCount", "SuccessorsCount", "PredecessorsCount", "AllUserResourcesAndPlaceholdersCount", "AttachmentsCount", "PostsCount", "NotesCount", "ConstraintsTypeManuallySet", "Reportable", "ReportableManuallySet", "Billable", "ChildShortcutCount", "Project", "WorkPolicy", "CommitLevel", "ReportingStartDate", "SYSID", "Work", "ActualEffort", "RemainingEffort", "WorkManuallySet", "RemainingEffortManuallySet", "WorkVariance", "ActualDuration", "StartDateVariance", "ActualCost", "DueDateVariance", "PlannedBudget", "DurationVariance", "ActualCostManuallySet", "PlannedBudgetManuallySet", "TimeTrackingEffort", "TimeTrackingCost", "FixedCost", "FixedPrice", "PercentInvested", "CostVariance", "TimeTrackingBilling", "EarnedValue", "PlannedRevenue", "CPI", "ActualRevenue", "SPI", "PlannedRevenueManuallySet", "ActualRevenueManuallySet", "Profitability", "PercentProfitability", "PlannedExpenses", "DirectPlannedExpenses", "ActualExpenses", "DirectActualExpenses", "ProjectedExpenses", "DirectProjectedExpenses", "PlannedBilledExpenses", "DirectPlannedBilledExpenses", "ActualBilledExpenses", "DirectActualBilledExpenses", "ProjectedBilledExpenses", "DirectProjectedBilledExpenses", "RevenueCurrencyType", "RevenueCurrencyTypeManuallySet", "CostCurrencyType", "CostCurrencyTypeManuallySet", "Pending", "IssuesCount", "LastUpdatedBySystemOn", "ActualEndDateManuallySet", "AllowReportingOnSubItems", "AllowReportingOnSubItemsManuallySet", "CommittedDate", "ResourcesAndPlaceholdersCount", "BudgetedHours", "EmailsCount", "CostBalance", "BudgetStatus", "BudgetStatusManuallySet", "RevenueBalance", "ActualEffortUpdatedFromTimesheets", "ActualEffortUpdatedFromTimesheetsManuallySet", "ParentProject", "SfExternalId", "SfExternalName", "InternalId", "OrderID", "SKU", "BaselineStartDate", "BaselineStartDateVariance", "BaselineDueDate", "BaselineDueDateVariance", "BaselineDuration", "BaselineDurationVariance", "BaselineWork", "BaselineWorkVariance", "BaselineCost", "BaselineCostsVariance", "BaselineRevenue", "BaselineRevenueVariance", "InternalStatus", "Deliverable", "DeliverableType", "Executable", "Parent", "PlannedAmount", "ChargedAmount", "TCPI", "TotalEstimatedCost", "Charged", "ChargedAmountManuallySet", "EstimatedStartDate", "RevenueEarnedValue", "EstimatedEndDate", "RPI", "EstimatedDuration", "RTCPI", "ReportableStartDate", "EntityType", "CompletnessDefinition", "ReportableEndDate", "TaskReportingPolicy", "ConflictType", "TaskReportingPolicyManuallySet", "FloatingTask", "IndividualReporting", "BaselineCreationDate", "AggregatedStopwatchesCount", "CalculateCompletenessBasedOnEfforts", "ActiveStopwatch", "CalculateCompletenessBasedOnEffortsManuallySet", "ObjectAlias", "StopwatchesCount", "LikesCount", "BudgetedHoursManuallySet", "CurrencyEAC", "PendingTimeTrackingEffort", "CurrencyREAC", "CurrencyETC", "ImageUrl", "CurrencyRETC", "SetByLeveling", "Template", "GeographicalRegion", "ResourceUtilizationCategory", "Country", "StateProvince", "ResourceUtilizationCategoryManuallySet", "ExpenseType", "BudgetCostOPEX", "ExpenseTypeManuallySet", "BudgetCostCAPEX", "BudgetCostNLR", "BudgetCostLR", "EntityOwner", "ActualCostOPEX", "ActualCostCAPEX", "ActualCostNLR", "ActualCostNLROpex", "ActualCostNLRCapex", "ActualCostLR", "ActualRevenueNLR", "PlannedRevenueNLR", "FinancialStart", "FinancialEnd", "FinancialOldStartDate", "RemainingForecastCostNLR", "RemainingForecastRevenueNLR", "CapexActualYTD", "OpexActualYTD", "CapexBudgetYTD", "OpexBudgetYTD", "FYForecastCostCapex", "FYForecastCostOpex", "FYForecastCost", "FYForecastatCompletionCost", "ProjectForecastatCompletionCost", "ActualBillableHours", "ActualNonBillableHours", "ResourceRateDate", "ResourceRateDateManuallySet", "LastReplanningDate", "FYBudgetedCost", "FYBudgetedCostCapex", "FYBudgetedCostOpex", "FYBudgetedCostNLR", "FYBudgetedCostLR", "FYExpectedRevenue", "FYForecastRevenue", "ExpectedRevenueLR", "FYExpectedRevenueLR", "PlannedProfit", "FYPlannedProfit", "UserResourcesCount", "AllUserResourcesCount", "ProjectCapexForecastatCompletionCost", "ProjectOpexForecastatCompletionCost", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "SuggestedNetRevenue", "Funding", "ExpectedNetRevenue", "FundingManuallySet", "ActualNetRevenue", "FundingGap", "SuggestedRevenue", "Allocation", "SuggestedActualRevenue", "AllocationManuallySet", "ActualNetProfitability", "SubAllocation", "PlannedNetProfitability", "SubAllocationManuallySet", "TargetMargin", "TotalAllocation", "BudgetThirdPartyNLRCosts", "Unallocated", "BudgetThirdPartyNLRBillableCosts", "UnusedAllocation", "BudgetThirdPartyNLRNonBillableCosts", "FundingAvailable", "BudgetLaborAndThirdPartyNLRNonBillableCosts", "FundingVariance", "ActualThirdPartyNLRCosts", "FundingRemaining", "ActualThirdPartyNLRBillableCosts", "ActualThirdPartyNLRNonBillableCosts", "ActualLaborAndThirdPartyNLRNonBillableCosts", "ActualNetProfit", "PlannedNetProfit", "PlannedMargin", "LaborCostPercentComplete", "SuggestedActualNetRevenue", "SuggestedRevenueNLR", "SuggestedActualRevenueNLR", "Contract", "ContractPurchaseOrder", "ProjectType", "ProjectTagging", "ProjectManager", "RollupFinancialAndEffortDataFromShortcut", "RollupFinancialDataFromShortcutManuallySet", "RollupProgressAndDatesFromShortcut", "RollupProgressAndDatesFromShortcutManuallySet", "ProjectSponsor", "IgnoreResourceCalendars", "IgnoreResourceCalendarsManuallySet", "HoldingNotes", "ClosingNotes", "LastProjectCalculation", "IsPortfolio", "ProgressUpdateFrequency", "ProgressUpdateFrequencyManuallySet", "LaborBudget", "Justification", "BusinessAlignment", "PlannedSavings", "ExpectedBusinessValue", "GoalsAchieved", "ExpectedROI", "BusinessImpact", "Score", "ProjectGoals", "ProjectSize", "OverallSummary", "ScheduleSummary", "BudgetSummary", "AdditionalComments", "Risks", "Mitigation", "RisksRate", "RisksImpact", "RisksTotalScore", "Benefit", "BenefitManuallySet", "Alignment", "InvestmentType", "Required", "BudgetVariancePercent", "Program", "DefaultIntegrationPath", "LastFPCalculationDate", "RateCard", "BillingType", "BillingTypeManuallySet", "PermissionInheritanceForExternalUsers", "NLRExchangeRateDateOptionSet", "CurrentFinancialPeriodStart", "CurrentFinancialPeriodStartSet", "UpdateForecastDefault", "UpdateForecastDefaultManuallySet", "ForecastUsingDateEffectiveRates", "ForecastUsingDateEffectiveRatesSet", "CurrentFinancialPeriodStartUpdated", "CurrentFinancialPeriodStartUpdatedSet", "SentimentStatus", "SentimentScore", "SentimentCalculated", "SentimentChanged", "SentimentLatest", "RemainingBudget", "BudgetVariance"] as const, + WorkItem: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "ExternalID", "State", "Phase", "StartDate", "DueDate", "Duration", "ActualStartDate", "ActualEndDate", "TrackStatus", "StatusChangedOn", "Conflicts", "OnCriticalPath", "StartDateManuallySet", "DueDateManuallySet", "DurationManuallySet", "TrackStatusManuallySet", "EarliestStartDate", "LatestStartDate", "EarliestEndDate", "LatestEndDate", "ExpectedProgress", "SchedulingType", "ImportedFrom", "Importance", "Priority", "PercentCompleted", "PercentCompletedManuallySet", "Manager", "ChargedTypeManuallySet", "ChildrenCount", "SuccessorsCount", "PredecessorsCount", "AllUserResourcesAndPlaceholdersCount", "AttachmentsCount", "PostsCount", "NotesCount", "ConstraintsTypeManuallySet", "Reportable", "ReportableManuallySet", "Billable", "ChildShortcutCount", "Project", "WorkPolicy", "CommitLevel", "ReportingStartDate", "SYSID", "Work", "ActualEffort", "RemainingEffort", "WorkManuallySet", "RemainingEffortManuallySet", "WorkVariance", "ActualDuration", "StartDateVariance", "ActualCost", "DueDateVariance", "PlannedBudget", "DurationVariance", "ActualCostManuallySet", "PlannedBudgetManuallySet", "TimeTrackingEffort", "TimeTrackingCost", "FixedCost", "FixedPrice", "PercentInvested", "CostVariance", "TimeTrackingBilling", "EarnedValue", "PlannedRevenue", "CPI", "ActualRevenue", "SPI", "PlannedRevenueManuallySet", "ActualRevenueManuallySet", "Profitability", "PercentProfitability", "PlannedExpenses", "DirectPlannedExpenses", "ActualExpenses", "DirectActualExpenses", "ProjectedExpenses", "DirectProjectedExpenses", "PlannedBilledExpenses", "DirectPlannedBilledExpenses", "ActualBilledExpenses", "DirectActualBilledExpenses", "ProjectedBilledExpenses", "DirectProjectedBilledExpenses", "RevenueCurrencyType", "RevenueCurrencyTypeManuallySet", "CostCurrencyType", "CostCurrencyTypeManuallySet", "Pending", "IssuesCount", "LastUpdatedBySystemOn", "ActualEndDateManuallySet", "AllowReportingOnSubItems", "AllowReportingOnSubItemsManuallySet", "CommittedDate", "ResourcesAndPlaceholdersCount", "BudgetedHours", "EmailsCount", "CostBalance", "BudgetStatus", "BudgetStatusManuallySet", "RevenueBalance", "ActualEffortUpdatedFromTimesheets", "ActualEffortUpdatedFromTimesheetsManuallySet", "ParentProject", "SfExternalId", "SfExternalName", "InternalId", "OrderID", "SKU", "BaselineStartDate", "BaselineStartDateVariance", "BaselineDueDate", "BaselineDueDateVariance", "BaselineDuration", "BaselineDurationVariance", "BaselineWork", "BaselineWorkVariance", "BaselineCost", "BaselineCostsVariance", "BaselineRevenue", "BaselineRevenueVariance", "InternalStatus", "Deliverable", "DeliverableType", "Executable", "Parent", "PlannedAmount", "ChargedAmount", "TCPI", "TotalEstimatedCost", "Charged", "ChargedAmountManuallySet", "EstimatedStartDate", "RevenueEarnedValue", "EstimatedEndDate", "RPI", "EstimatedDuration", "RTCPI", "ReportableStartDate", "EntityType", "CompletnessDefinition", "ReportableEndDate", "TaskReportingPolicy", "ConflictType", "TaskReportingPolicyManuallySet", "FloatingTask", "IndividualReporting", "BaselineCreationDate", "AggregatedStopwatchesCount", "CalculateCompletenessBasedOnEfforts", "ActiveStopwatch", "CalculateCompletenessBasedOnEffortsManuallySet", "ObjectAlias", "StopwatchesCount", "LikesCount", "BudgetedHoursManuallySet", "CurrencyEAC", "PendingTimeTrackingEffort", "CurrencyREAC", "CurrencyETC", "ImageUrl", "CurrencyRETC", "SetByLeveling", "Template", "GeographicalRegion", "ResourceUtilizationCategory", "Country", "StateProvince", "ResourceUtilizationCategoryManuallySet", "ExpenseType", "BudgetCostOPEX", "ExpenseTypeManuallySet", "BudgetCostCAPEX", "BudgetCostNLR", "BudgetCostLR", "EntityOwner", "ActualCostOPEX", "ActualCostCAPEX", "ActualCostNLR", "ActualCostNLROpex", "ActualCostNLRCapex", "ActualCostLR", "ActualRevenueNLR", "PlannedRevenueNLR", "FinancialStart", "FinancialEnd", "FinancialOldStartDate", "RemainingForecastCostNLR", "RemainingForecastRevenueNLR", "CapexActualYTD", "OpexActualYTD", "CapexBudgetYTD", "OpexBudgetYTD", "FYForecastCostCapex", "FYForecastCostOpex", "FYForecastCost", "FYForecastatCompletionCost", "ProjectForecastatCompletionCost", "ActualBillableHours", "ActualNonBillableHours", "ResourceRateDate", "ResourceRateDateManuallySet", "LastReplanningDate", "FYBudgetedCost", "FYBudgetedCostCapex", "FYBudgetedCostOpex", "FYBudgetedCostNLR", "FYBudgetedCostLR", "FYExpectedRevenue", "FYForecastRevenue", "ExpectedRevenueLR", "FYExpectedRevenueLR", "PlannedProfit", "FYPlannedProfit", "UserResourcesCount", "AllUserResourcesCount", "ProjectCapexForecastatCompletionCost", "ProjectOpexForecastatCompletionCost", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "SuggestedNetRevenue", "Funding", "ExpectedNetRevenue", "FundingManuallySet", "ActualNetRevenue", "FundingGap", "SuggestedRevenue", "Allocation", "SuggestedActualRevenue", "AllocationManuallySet", "ActualNetProfitability", "SubAllocation", "PlannedNetProfitability", "SubAllocationManuallySet", "TargetMargin", "TotalAllocation", "BudgetThirdPartyNLRCosts", "Unallocated", "BudgetThirdPartyNLRBillableCosts", "UnusedAllocation", "BudgetThirdPartyNLRNonBillableCosts", "FundingAvailable", "BudgetLaborAndThirdPartyNLRNonBillableCosts", "FundingVariance", "ActualThirdPartyNLRCosts", "FundingRemaining", "ActualThirdPartyNLRBillableCosts", "ActualThirdPartyNLRNonBillableCosts", "ActualLaborAndThirdPartyNLRNonBillableCosts", "ActualNetProfit", "PlannedNetProfit", "PlannedMargin", "LaborCostPercentComplete", "SuggestedActualNetRevenue", "SuggestedRevenueNLR", "SuggestedActualRevenueNLR", "Contract", "ContractPurchaseOrder"] as const, + Topic: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "Name", "ObjectAlias", "LikesCount", "RelatedItemsCount", "ImageUrl"] as const, + Following: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "User", "Entity", "ExternalID", "Follow"] as const, + Like: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "User", "Entity", "ExternalID"] as const, + ContractPurchaseOrderDiscussionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DiscussionMessage", "Entity", "ExternalID"] as const, + ContractDiscussionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DiscussionMessage", "Entity", "ExternalID"] as const, + DecisionDiscussionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DiscussionMessage", "Entity", "ExternalID"] as const, + ActionItemDiscussionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DiscussionMessage", "Entity", "ExternalID"] as const, + ContributionDiscussionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DiscussionMessage", "Entity", "ExternalID"] as const, + ObjectiveDiscussionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DiscussionMessage", "Entity", "ExternalID"] as const, + TargetDiscussionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DiscussionMessage", "Entity", "ExternalID"] as const, + PortfolioDiscussionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DiscussionMessage", "Entity", "ExternalID"] as const, + NLRDiscussionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DiscussionMessage", "Entity", "ExternalID"] as const, + ReportDiscussionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DiscussionMessage", "Entity", "ExternalID"] as const, + UserReportDiscussionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DiscussionMessage", "Entity", "ExternalID"] as const, + SystemReportDiscussionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DiscussionMessage", "Entity", "ExternalID"] as const, + ExpenseEntryDiscussionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DiscussionMessage", "Entity", "ExternalID"] as const, + ExpenseSheetDiscussionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DiscussionMessage", "Entity", "ExternalID"] as const, + CustomerDiscussionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DiscussionMessage", "Entity", "ExternalID"] as const, + CaseDiscussionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DiscussionMessage", "Entity", "ExternalID"] as const, + WorkItemDiscussionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DiscussionMessage", "Entity", "ExternalID"] as const, + DiscussionReply: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "Container", "ObjectAlias", "Body", "Via", "Text", "Type", "State", "Style", "AttachmentsCount", "LikesCount", "Post", "MarkedType"] as const, + DiscussionPost: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "Container", "ObjectAlias", "Body", "Via", "Text", "Type", "State", "Style", "AttachmentsCount", "LikesCount", "Post", "RepliesCount"] as const, + DiscussionMessage: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID", "Container", "ObjectAlias", "Body", "Via", "Text", "Type", "State", "Style", "AttachmentsCount", "LikesCount", "Post"] as const, + GroupTaskLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Group", "Entity", "ExternalID"] as const, + GroupProjectLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Group", "Entity", "ExternalID"] as const, + GroupCaseLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Group", "Entity", "ExternalID"] as const, + GroupCustomerLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Group", "Entity", "ExternalID"] as const, + GroupLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "Group", "Entity", "ExternalID"] as const, + RecycleBinItems: ["DeletedBy", "DeletedOn", "DeletedExternalID", "DeletedEntityType"] as const, + Stopwatch: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "WorkItem", "User", "ExternalID", "HumanResource", "State", "ElapsedTime", "OrganizationElapsedTime"] as const, + ResourceManagerLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "Container", "Member", "ExternalID", "EntityType", "Order"] as const, + ProfileLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "Container", "Member", "ExternalID", "EntityType"] as const, + SubGroupHierarchyLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "Container", "Member", "ExternalID", "EntityType", "Primary"] as const, + GroupMembershipLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "Container", "Member", "ExternalID", "EntityType", "Primary", "Order", "Notify"] as const, + GroupHierarchyLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "Container", "Member", "ExternalID", "EntityType", "Primary"] as const, + SkillLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "Container", "Member", "ExternalID", "EntityType"] as const, + MembershipLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "Container", "Member", "ExternalID", "EntityType"] as const, + ContractPurchaseOrderAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + ContractAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + AssetAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + BusinessUnitAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + ContributionAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + ObjectiveAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + TargetAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + DecisionAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + ActionItemAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + MeetingNoteAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + PortfolioAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + NLRAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + WorkItemAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + DashboardAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + ReportAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + UserAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + ExpenseSheetAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + CustomerAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + DiscussionMessageAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + ResourceGroupEntityAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + IssueAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + ExpenseEntryAttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + AdditionalManagerLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "WorkItem", "Resource", "RemainingEffort", "Units", "ExternalID", "ResourceRole", "Work", "WorkManuallySet", "RemainingEffortManuallySet", "UnitsManuallySet", "Duration", "ActualRegularEffort", "ActualRegularManuallySet", "ActualOvertimeEffort", "ActualOvertimeEffortManuallySet", "LastUpdatedBySystemOn", "WorkVariance", "Role", "Availability", "EntityType", "PercentCompleted", "PercentCompletedManuallySet", "CompletnessDefinition", "PendingTime", "RevenueRegularRate", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRegularRate", "CostRateManuallySet", "PlannedBudget", "CostOvertimeRate", "PlannedRevenue", "CostOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed", "BaselineWork", "BaselineWorkVariance", "BaselineCost", "BaselineCostsVariance", "BaselineRevenue", "BaselineRevenueVariance", "BaselineCreationDate", "OriginalWork", "OriginalWorkVariance", "OriginalCost", "OriginalCostsVariance", "OriginalRevenue", "OriginalRevenueVariance", "StartDate", "ManagerRole"] as const, + OwnerLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "WorkItem", "Resource", "RemainingEffort", "Units", "ExternalID", "ResourceRole", "Work", "WorkManuallySet", "RemainingEffortManuallySet", "UnitsManuallySet", "Duration", "ActualRegularEffort", "ActualRegularManuallySet", "ActualOvertimeEffort", "ActualOvertimeEffortManuallySet", "LastUpdatedBySystemOn", "WorkVariance", "Role", "Availability", "EntityType", "PercentCompleted", "PercentCompletedManuallySet", "CompletnessDefinition", "PendingTime", "RevenueRegularRate", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRegularRate", "CostRateManuallySet", "PlannedBudget", "CostOvertimeRate", "PlannedRevenue", "CostOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed", "BaselineWork", "BaselineWorkVariance", "BaselineCost", "BaselineCostsVariance", "BaselineRevenue", "BaselineRevenueVariance", "BaselineCreationDate", "OriginalWork", "OriginalWorkVariance", "OriginalCost", "OriginalCostsVariance", "OriginalRevenue", "OriginalRevenueVariance", "StartDate", "ManagerRole"] as const, + ManagerResourceLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "WorkItem", "Resource", "RemainingEffort", "Units", "ExternalID", "ResourceRole", "Work", "WorkManuallySet", "RemainingEffortManuallySet", "UnitsManuallySet", "Duration", "ActualRegularEffort", "ActualRegularManuallySet", "ActualOvertimeEffort", "ActualOvertimeEffortManuallySet", "LastUpdatedBySystemOn", "WorkVariance", "Role", "Availability", "EntityType", "PercentCompleted", "PercentCompletedManuallySet", "CompletnessDefinition", "PendingTime", "RevenueRegularRate", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRegularRate", "CostRateManuallySet", "PlannedBudget", "CostOvertimeRate", "PlannedRevenue", "CostOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed", "BaselineWork", "BaselineWorkVariance", "BaselineCost", "BaselineCostsVariance", "BaselineRevenue", "BaselineRevenueVariance", "BaselineCreationDate", "OriginalWork", "OriginalWorkVariance", "OriginalCost", "OriginalCostsVariance", "OriginalRevenue", "OriginalRevenueVariance", "StartDate", "ManagerRole"] as const, + RegularResourceLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "WorkItem", "Resource", "RemainingEffort", "Units", "ExternalID", "ResourceRole", "JobTitleForBilling", "Work", "WorkManuallySet", "RemainingEffortManuallySet", "UnitsManuallySet", "Duration", "ActualRegularEffort", "ActualRegularManuallySet", "ActualOvertimeEffort", "ActualOvertimeEffortManuallySet", "LastUpdatedBySystemOn", "WorkVariance", "Role", "Availability", "EntityType", "PercentCompleted", "PercentCompletedManuallySet", "CompletnessDefinition", "PendingTime", "RevenueRegularRate", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRegularRate", "CostRateManuallySet", "PlannedBudget", "CostOvertimeRate", "PlannedRevenue", "CostOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed", "BaselineWork", "BaselineWorkVariance", "BaselineCost", "BaselineCostsVariance", "BaselineRevenue", "BaselineRevenueVariance", "BaselineCreationDate", "OriginalWork", "OriginalWorkVariance", "OriginalCost", "OriginalCostsVariance", "OriginalRevenue", "OriginalRevenueVariance", "StartDate", "State", "InactiveDate", "ResourceCalendarExceptionCount", "AccumulatedWork", "TotalAssignment"] as const, + ReviewerLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "WorkItem", "Resource", "RemainingEffort", "Units", "ExternalID", "ResourceRole", "Work", "WorkManuallySet", "RemainingEffortManuallySet", "UnitsManuallySet", "Duration", "ActualRegularEffort", "ActualRegularManuallySet", "ActualOvertimeEffort", "ActualOvertimeEffortManuallySet", "LastUpdatedBySystemOn", "WorkVariance", "Role", "Availability", "EntityType", "PercentCompleted", "PercentCompletedManuallySet", "CompletnessDefinition", "PendingTime", "RevenueRegularRate", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRegularRate", "CostRateManuallySet", "PlannedBudget", "CostOvertimeRate", "PlannedRevenue", "CostOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed", "BaselineWork", "BaselineWorkVariance", "BaselineCost", "BaselineCostsVariance", "BaselineRevenue", "BaselineRevenueVariance", "BaselineCreationDate", "OriginalWork", "OriginalWorkVariance", "OriginalCost", "OriginalCostsVariance", "OriginalRevenue", "OriginalRevenueVariance", "StartDate"] as const, + WorkItemTeamLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "WorkItem", "Resource", "RemainingEffort", "Units", "ExternalID", "ResourceRole", "Work", "WorkManuallySet", "RemainingEffortManuallySet", "UnitsManuallySet", "Duration", "ActualRegularEffort", "ActualRegularManuallySet", "ActualOvertimeEffort", "ActualOvertimeEffortManuallySet", "LastUpdatedBySystemOn", "WorkVariance", "Role", "Availability", "EntityType", "PercentCompleted", "PercentCompletedManuallySet", "CompletnessDefinition", "PendingTime", "RevenueRegularRate", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRegularRate", "CostRateManuallySet", "PlannedBudget", "CostOvertimeRate", "PlannedRevenue", "CostOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed", "BaselineWork", "BaselineWorkVariance", "BaselineCost", "BaselineCostsVariance", "BaselineRevenue", "BaselineRevenueVariance", "BaselineCreationDate", "OriginalWork", "OriginalWorkVariance", "OriginalCost", "OriginalCostsVariance", "OriginalRevenue", "OriginalRevenueVariance", "StartDate"] as const, + JobTitleRateLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "WorkItem", "Resource", "RemainingEffort", "Units", "ExternalID", "ResourceRole", "Work", "WorkManuallySet", "RemainingEffortManuallySet", "UnitsManuallySet", "Duration", "ActualRegularEffort", "ActualRegularManuallySet", "ActualOvertimeEffort", "ActualOvertimeEffortManuallySet", "LastUpdatedBySystemOn", "WorkVariance", "Role", "Availability", "EntityType", "PercentCompleted", "PercentCompletedManuallySet", "CompletnessDefinition", "PendingTime", "RevenueRegularRate", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRegularRate", "CostRateManuallySet", "PlannedBudget", "CostOvertimeRate", "PlannedRevenue", "CostOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed"] as const, + ResourceLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "WorkItem", "Resource", "RemainingEffort", "Units", "ExternalID", "ResourceRole", "Work", "WorkManuallySet", "RemainingEffortManuallySet", "UnitsManuallySet", "Duration", "ActualRegularEffort", "ActualRegularManuallySet", "ActualOvertimeEffort", "ActualOvertimeEffortManuallySet", "LastUpdatedBySystemOn", "WorkVariance", "Role", "Availability", "EntityType", "PercentCompleted", "PercentCompletedManuallySet", "CompletnessDefinition", "PendingTime", "RevenueRegularRate", "RevenueRateManuallySet", "RevenueOvertimeRate", "RevenueOvertimeRateManuallySet", "CostRegularRate", "CostRateManuallySet", "PlannedBudget", "CostOvertimeRate", "PlannedRevenue", "CostOvertimeRateManuallySet", "CostRateUsed", "BillingRateUsed"] as const, + ProgressImpactLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Parent", "Child", "ImpactWeight", "Sequence", "Shortcut", "ExternalID", "LastUpdatedBySystemOn", "AttachToRoadmap", "EntityType", "ParentProject"] as const, + RealWorkItemHierarchyLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Parent", "Child", "ImpactWeight", "Sequence", "Shortcut", "ExternalID", "LastUpdatedBySystemOn", "AttachToRoadmap", "EntityType", "ParentProject", "FundingAmount", "FundingPercentage"] as const, + ShortcutLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Parent", "Child", "ImpactWeight", "Sequence", "Shortcut", "ExternalID", "LastUpdatedBySystemOn", "AttachToRoadmap", "EntityType", "ParentProject"] as const, + BaseWorkItemHierarchyLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Parent", "Child", "ImpactWeight", "Sequence", "Shortcut", "ExternalID", "LastUpdatedBySystemOn", "AttachToRoadmap", "EntityType", "ParentProject"] as const, + WorkItemHierarchyLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Parent", "Child", "ImpactWeight", "Sequence", "Shortcut", "ExternalID", "LastUpdatedBySystemOn", "AttachToRoadmap", "EntityType", "ParentProject"] as const, + BusinessRuleError: ["TriggeredBy", "When", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ErrorMessage", "RelatedItem", "BusinessRuleName"] as const, + SchedulingType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + UnitOfMeasure: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + CurrencyType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ScoreRank: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ContractStatus: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ContractState: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ContractSize: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ContractType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + PhasingState: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + SentimentStatus: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + RestrictedBusinessUnitSource: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + RestrictedFieldsSet: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ExpectedTimesheets: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + UpdateForecastDefault: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + NLRExchangeRateDateOption: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + PermissionInheritanceForExternalUsers: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + TargetUnitScale: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + TargetCurrencyType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + TargetUnitType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + TargetStatus: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + TargetType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + TargetState: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + DecisionState: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + MeetingAttendeeState: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ActionItemState: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + MeetingNoteState: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + LoginType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + PortfolioState: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + PortfolioType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ClarizenGoBoardType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ProjectBillingType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + TimeApproval: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + NLRRescheduleMode: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ClarizenGoStatus: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ZiflowProofAlert: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + AuditAction: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + TrackStatus: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + CustomObjectIcons: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + TemplateCategory: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + GeoLocation: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + TemplateItemType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + LaborBudgetPickup: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ExpenseType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + NonLaborResourceLinkCategory: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ReportingPeriodPickup: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + GeographicalRegion: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ResourceUtilizationCategory: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + InvestmentType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + PackagedObjectCategory: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + NotifyUsers: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + EditorsMode: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ManagerRole: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + DataObjectType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + NumericFormat: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + Role: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + DashboardStatus: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + UserShortcut: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + IntegrationAuthenticationType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + AuthorizationGroup: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + CustomIcon: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ProofAlert: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ProofRole: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + TriggeredBy: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + SyncStatus: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ReplyMarkedType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + CompanySize: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + CustomerSuccessStatus: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + Industry: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + Tier: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + AccountStatus: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + LicenseType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + LandingPage: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + StorageType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ShortDateFormat: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ConflictType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ProjectSize: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + PostState: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + PostType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + DiscussionEmailNotifications: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + CompletenessRole: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + SpecialRole: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + FileType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + WidgetType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + CreatorType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + StopwatchAggregateState: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + CommentType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + StopwatchState: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + Region: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + Package: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + CaseBusinessImpact: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + State: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + TaskReportingPolicy: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + CaseState: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ChargedType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + RiskImpact: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + RisksRate: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + BusinessImpact: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ExceptionType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ObjectAccessType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + Months: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + WeekDays: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + RiskState: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + DependencyType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + Pending: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + Severity: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ExpenseCategory: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + WorkPolicy: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + RecipientType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + RateType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ResourceRole: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + Importance: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + Language: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + RecurrenceType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + CommitLevel: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + CountryState: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ReportExtensionType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ProjectType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + BudgetStatus: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + Countries: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + ImportedFrom: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + TimeZone: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color", "Offset"] as const, + Widget: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "ViewCounter", "Revoked", "EntityType", "ExpirationDate", "WidgetType", "WidgetUrl", "HasPassword", "EmailDate", "NumberOfLoginFailures"] as const, + CaseCustomerLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "Entity", "Customer", "Submitted", "Committed", "CommittedDate", "ExternalID", "EntityType"] as const, + IssueTeamMembers: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "Case", "TeamMember", "ExternalID", "EntityType"] as const, + RelatedWork: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Case", "WorkItem", "ImpactWeight", "ExternalID", "LastUpdatedBySystemOn", "EntityType"] as const, + EnhancementRequest: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "SYSID", "ExternalID", "PercentCompleted", "AttachmentsCount", "PostsCount", "NotesCount", "Title", "Priority", "Mandatory", "Owner", "DueDate", "AssignedTo", "AssignmentDate", "SubmittedBy", "SubmissionDate", "EvaluatedBy", "EvaluationDate", "OpenedBy", "OpeningDate", "ResolvedBy", "ResolvedDate", "ResolutionDetails", "ClosedBy", "ClosureDate", "RejectedBy", "RejectionDate", "RejectDetails", "ReopenedBy", "ReopeningDate", "ReopenReasons", "DeferredBy", "DeferringDate", "Comment", "PlannedFor", "ReportedbyCustomer", "Category", "DuplicateTo", "Description", "PlainText", "LastUpdatedBySystemOn", "DeferReasons", "Work", "ActualEffort", "RemainingEffort", "WorkManuallySet", "RemainingEffortManuallySet", "WorkVariance", "EmailsCount", "Justification", "BusinessAlignment", "PlannedSavings", "ExpectedBusinessValue", "GoalsAchieved", "ExpectedROI", "BusinessImpact", "Score", "OriginatedFrom", "ObjectAlias", "State", "EntityType", "ReportedBy", "ReportedByMail", "LikesCount", "GeographicalRegion", "Country", "StateProvince", "EntityOwner", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "DefaultIntegrationPath", "ExpectedCost", "ExpectedRevenue", "Risks", "Mitigation", "RisksRate", "RisksImpact", "RisksTotalScore", "Severity", "RequestType"] as const, + Bug: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "SYSID", "ExternalID", "PercentCompleted", "AttachmentsCount", "PostsCount", "NotesCount", "Title", "Severity", "Priority", "Mandatory", "Owner", "DueDate", "AssignedTo", "AssignmentDate", "SubmittedBy", "SubmissionDate", "EvaluatedBy", "EvaluationDate", "OpenedBy", "OpeningDate", "ResolvedBy", "ResolvedDate", "ResolutionDetails", "ClosedBy", "ClosureDate", "RejectedBy", "RejectionDate", "RejectDetails", "ReopenedBy", "ReopeningDate", "ReopenReasons", "DeferredBy", "DeferringDate", "Comment", "PlannedFor", "ReportedbyCustomer", "Category", "DuplicateTo", "Description", "PlainText", "LastUpdatedBySystemOn", "DeferReasons", "Work", "ActualEffort", "RemainingEffort", "WorkManuallySet", "RemainingEffortManuallySet", "WorkVariance", "EmailsCount", "Justification", "BusinessAlignment", "PlannedSavings", "ExpectedBusinessValue", "GoalsAchieved", "ExpectedROI", "BusinessImpact", "Score", "OriginatedFrom", "ObjectAlias", "State", "EntityType", "ReportedBy", "ReportedByMail", "LikesCount", "GeographicalRegion", "Country", "StateProvince", "EntityOwner", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "DefaultIntegrationPath", "Regression", "ImpactArea", "FoundInBuild", "IntegratedInBuild", "ClosedInBuild", "ReopenedInBuild", "SfExternalId", "SfExternalName", "ZdExternalId", "ZdExternalName"] as const, + Risk: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "SYSID", "ExternalID", "PercentCompleted", "AttachmentsCount", "PostsCount", "NotesCount", "Title", "Severity", "Priority", "Mandatory", "Owner", "DueDate", "AssignedTo", "AssignmentDate", "SubmittedBy", "SubmissionDate", "EvaluatedBy", "EvaluationDate", "OpenedBy", "OpeningDate", "ResolvedBy", "ResolvedDate", "ResolutionDetails", "ClosedBy", "ClosureDate", "RejectedBy", "RejectionDate", "RejectDetails", "ReopenedBy", "ReopeningDate", "ReopenReasons", "DeferredBy", "DeferringDate", "Comment", "PlannedFor", "ReportedbyCustomer", "Category", "DuplicateTo", "Description", "PlainText", "LastUpdatedBySystemOn", "DeferReasons", "Work", "ActualEffort", "RemainingEffort", "WorkManuallySet", "RemainingEffortManuallySet", "WorkVariance", "EmailsCount", "Justification", "BusinessAlignment", "PlannedSavings", "ExpectedBusinessValue", "GoalsAchieved", "ExpectedROI", "BusinessImpact", "Score", "OriginatedFrom", "ObjectAlias", "State", "EntityType", "ReportedBy", "ReportedByMail", "LikesCount", "GeographicalRegion", "Country", "StateProvince", "EntityOwner", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "DefaultIntegrationPath", "PercentProbability", "Impact", "TriggerDate", "MitigationPlan", "ContingencyPlan", "RiskRate", "RiskState"] as const, + Issue: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "SYSID", "ExternalID", "PercentCompleted", "AttachmentsCount", "PostsCount", "NotesCount", "Title", "Severity", "Priority", "Mandatory", "Owner", "DueDate", "AssignedTo", "AssignmentDate", "SubmittedBy", "SubmissionDate", "EvaluatedBy", "EvaluationDate", "OpenedBy", "OpeningDate", "ResolvedBy", "ResolvedDate", "ResolutionDetails", "ClosedBy", "ClosureDate", "RejectedBy", "RejectionDate", "RejectDetails", "ReopenedBy", "ReopeningDate", "ReopenReasons", "DeferredBy", "DeferringDate", "Comment", "PlannedFor", "ReportedbyCustomer", "Category", "DuplicateTo", "Description", "PlainText", "LastUpdatedBySystemOn", "DeferReasons", "Work", "ActualEffort", "RemainingEffort", "WorkManuallySet", "RemainingEffortManuallySet", "WorkVariance", "EmailsCount", "Justification", "BusinessAlignment", "PlannedSavings", "ExpectedBusinessValue", "GoalsAchieved", "ExpectedROI", "BusinessImpact", "Score", "OriginatedFrom", "ObjectAlias", "State", "EntityType", "ReportedBy", "ReportedByMail", "LikesCount", "GeographicalRegion", "Country", "StateProvince", "EntityOwner", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "DefaultIntegrationPath", "SfExternalId", "SfExternalName", "ZdExternalId", "ZdExternalName"] as const, + Case: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "SYSID", "ExternalID", "PercentCompleted", "PercentCompletedManuallySet", "AttachmentsCount", "PostsCount", "NotesCount", "Title", "Severity", "Priority", "Mandatory", "Owner", "DueDate", "AssignedTo", "AssignmentDate", "SubmittedBy", "SubmissionDate", "EvaluatedBy", "EvaluationDate", "OpenedBy", "OpeningDate", "ResolvedBy", "ResolvedDate", "ResolutionDetails", "ClosedBy", "ClosureDate", "RejectedBy", "RejectionDate", "RejectDetails", "ReopenedBy", "ReopeningDate", "ReopenReasons", "DeferredBy", "DeferringDate", "Comment", "PlannedFor", "ReportedbyCustomer", "Category", "DuplicateTo", "Description", "PlainText", "LastUpdatedBySystemOn", "DeferReasons", "Work", "ActualEffort", "RemainingEffort", "WorkManuallySet", "RemainingEffortManuallySet", "WorkVariance", "EmailsCount", "Justification", "BusinessAlignment", "PlannedSavings", "ExpectedBusinessValue", "GoalsAchieved", "ExpectedROI", "BusinessImpact", "Score", "OriginatedFrom", "ObjectAlias", "State", "EntityType", "ReportedBy", "ReportedByMail", "LikesCount", "GeographicalRegion", "Country", "StateProvince", "EntityOwner", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "DefaultIntegrationPath"] as const, + FavoriteLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "User", "Entity", "LastUpdatedBySystemOn", "EntityType", "ExternalID"] as const, + Expense: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Description", "WorkItem", "AttachmentsCount", "Category", "DateIncurred", "DateInvoiced", "LocalAmount", "BillingAmount", "ExchangeRate", "Billable", "Receipt", "Reimburse", "Comment", "ExpenseSheet", "LastUpdatedBySystemOn", "Amount", "Charged", "ExternalID", "EntityType", "LikesCount"] as const, + ExpenseSheet: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Description", "SYSID", "Owner", "ApprovedBy", "ApprovalDate", "Project", "PostsCount", "Date", "Total", "ReimbursedTotal", "BillableTotal", "SubmittedOn", "Approver", "LastUpdatedBySystemOn", "AttachmentsCount", "ExternalID", "LikesCount", "EntityType", "State"] as const, + CurrencyExchangeRate: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "WorkItem", "BaseCurrency", "QuoteCurrency", "EffectiveFrom", "ExchangeRate", "LastUpdatedBySystemOn", "EntityType", "ExternalID"] as const, + EmailRecipient: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "Recipient", "EmailAddress", "RecipientType", "Email", "ExternalID", "EntityType"] as const, + CustomerLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "Customer", "ExternalID", "CostAllocation", "EntityType", "LastUpdatedBySystemOn"] as const, + ContactPerson: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "ExternalID", "Customer", "FaxNumber", "MainContact", "LastUpdatedBySystemOn", "FirstName", "SfExternalId", "LastName", "Email", "SfExternalName", "OfficePhone", "MobilePhone", "EntityType", "Title", "Department", "TimeZone", "LastDateContacted", "URL", "ImageUrl"] as const, + Customer: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "ExternalID", "State", "BusinessAddress", "BillingAddress", "SYSID", "LastUpdatedBySystemOn", "InternalId", "Owner", "SfExternalId", "AccountStatus", "SfExternalName", "Tier", "EntityType", "Industry", "LastDateContacted", "CustomerValue", "URL", "Region", "MarketingSource", "TechnicalAccountManager", "CustomerSuccessStatus", "CompanySize", "OfficePhone", "AttachmentsCount", "LikesCount", "EmailsCount", "ImageUrl", "GeographicalRegion", "Country", "StateProvince", "EntityOwner", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet", "DefaultIntegrationPath", "NotesCount"] as const, + Rate: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "ExternalID", "RateFor", "RateType", "EffectiveFrom", "EffectiveTo", "RegularRate", "OvertimeRate", "LastUpdatedBySystemOn", "EntityType", "Comment", "RateUsed", "RateCardVersion", "CurrencyExchangeDate", "CurrencyExchangeDateManuallySet"] as const, + Timesheet: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "ExternalID", "State", "ApprovedBy", "ApprovalDate", "ReportedBy", "ReportedDate", "Duration", "RegularHours", "Comment", "BillingRate", "Cost", "WorkItem", "CostRate", "Price", "LastUpdatedBySystemOn", "Charged", "EntityType", "CreatorType", "HumanResource", "Overtime", "AssignedApprover", "DisableReportingTimeLimit", "Project", "UserJobTitle", "UsedJobTitleCost", "UsedJobTitleBilling", "CostDirectRateHolderRate", "BillingDirectRateHolderRate", "LastSubmittedDate", "RejectionNote", "RejectionDate", "RejectedBy"] as const, + CalendarException: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "ExternalID", "Name", "WorkingDay", "LastUpdatedBySystemOn", "StartDate", "EndDate", "AllDay", "ExceptionType", "EntityType", "EventCalendar"] as const, + Organization: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "ExternalID", "State", "Country", "TimeZone", "CountryState", "DefaultCurrency", "Language", "LastUpdatedBySystemOn", "Domain", "SupportUser", "EntityType", "Package", "DefaultWorkflowUser", "UpdateRequestsCounter", "LandingPage", "CostRegularRate", "CostOvertimeRate", "RevenueRegularRate", "RevenueOvertimeRate", "CustomCss", "ImageUrl", "CustomIcon", "Profile", "MobileProfile", "UserSyncUpdated", "CostRateUsed", "BillingRateUsed", "SharepointOnlineUserName"] as const, + TaskType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + DocumentType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + Phase: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + RequestType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + MilestoneType: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Name", "Description", "Order", "IsDefault", "LastUpdatedBySystemOn", "Tooltip", "EntityType", "ImageUrl", "Color"] as const, + AttachmentLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "Entity", "ExternalID", "Document", "LastUpdatedBySystemOn", "EntityType"] as const, + DiscussionLink: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "DiscussionMessage", "Entity", "ExternalID"] as const, + CustomLinkEntity: ["CreatedBy", "CreatedOn", "LastUpdatedBy", "LastUpdatedOn", "LastUpdatedBySystemOn", "EntityType", "ExternalID"] as const, +} as const; + +export type EntityFieldName = + (typeof FIELDS_BY_ENTITY)[T][number]; + +export const RELATIONS_BY_ENTITY = { + ContractHierarchyLink: [] as const, + CaseContractPurchaseOrderLink: [] as const, + CaseContractLink: [] as const, + ContractPurchaseOrder: [{ name: "RelatedRisks", relatedTypeName: "Risk" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "Followers", relatedTypeName: "User" }, { name: "Cases", relatedTypeName: "Case" }, { name: "RelatedIssues", relatedTypeName: "Issue" }, { name: "RelatedBugs", relatedTypeName: "Bug" }, { name: "RelatedRequests", relatedTypeName: "EnhancementRequest" }, { name: "Documents", relatedTypeName: "Document" }] as const, + Contract: [{ name: "DirectFollowers", relatedTypeName: "User" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "Followers", relatedTypeName: "User" }, { name: "ContractPurchaseOrders", relatedTypeName: "ContractPurchaseOrder" }, { name: "Cases", relatedTypeName: "Case" }, { name: "RelatedIssues", relatedTypeName: "Issue" }, { name: "RelatedBugs", relatedTypeName: "Bug" }, { name: "RelatedRequests", relatedTypeName: "EnhancementRequest" }, { name: "Documents", relatedTypeName: "Document" }, { name: "SubContracts", relatedTypeName: "Contract" }, { name: "WorkItems", relatedTypeName: "WorkItem" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }] as const, + CustomizationProfilingData: [] as const, + Note: [] as const, + Post: [] as const, + Email: [] as const, + Comment: [] as const, + CapacityTimeline: [] as const, + StaffTimePhasedDataMonthly: [] as const, + StaffTimePhasedDataDaily: [] as const, + BusinessUnitRestrictedFields: [] as const, + RestrictedFieldsSetLink: [] as const, + TimelinesRoadmapMilestoneLink: [] as const, + BusinessUnitsAccess: [] as const, + RestrictedFields: [{ name: "RestrictedFieldSetRelation", relatedTypeName: "RestrictedFieldsSet" }] as const, + BusinessUnit: [{ name: "Documents", relatedTypeName: "Document" }, { name: "AssignedRates", relatedTypeName: "Rate" }] as const, + TimelinesRoadmapKeyDate: [] as const, + CurrencyExchangeRateCard: [{ name: "CurrencyExchangeRateCardForProjects", relatedTypeName: "GenericProject" }, { name: "CurrencyExchangeRateCardForCustomers", relatedTypeName: "Customer" }, { name: "CurrencyExchangeRates", relatedTypeName: "CurrencyExchangeRate" }, { name: "CurrencyExchangeRateCardForCases", relatedTypeName: "Case" }, { name: "CurrencyExchangeRateCardForProjectVersions", relatedTypeName: "ProjectVersion" }, { name: "CurrencyExchangeRateCardForPortfolios", relatedTypeName: "Portfolio" }] as const, + ObjectiveHierarchyLink: [] as const, + TargetHierarchyLink: [] as const, + Contribution: [{ name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "Documents", relatedTypeName: "Document" }] as const, + Objective: [{ name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ContributingWorkItems", relatedTypeName: "WorkItem" }, { name: "ContributingPortfolios", relatedTypeName: "Portfolio" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "Documents", relatedTypeName: "Document" }, { name: "SubObjectives", relatedTypeName: "Objective" }, { name: "Targets", relatedTypeName: "Target" }] as const, + Target: [{ name: "Decisions", relatedTypeName: "Decision" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "ContributingPortfolios", relatedTypeName: "Portfolio" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "ContributingWorkItems", relatedTypeName: "WorkItem" }, { name: "IndirectContributions", relatedTypeName: "Contribution" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "Contributions", relatedTypeName: "Contribution" }, { name: "Documents", relatedTypeName: "Document" }, { name: "SubTargets", relatedTypeName: "Target" }] as const, + EntityMappingChange: [] as const, + ActionItemLink: [] as const, + DecisionLink: [] as const, + TimelinesRoadmap: [{ name: "Milestones", relatedTypeName: "Milestone" }] as const, + PrimaryFlagHistory: [] as const, + UserStateHistory: [] as const, + Decision: [{ name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "Documents", relatedTypeName: "Document" }] as const, + MeetingAttendee: [] as const, + ActionItem: [{ name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "Documents", relatedTypeName: "Document" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }] as const, + MeetingNote: [{ name: "ParticipatingUsers", relatedTypeName: "User" }, { name: "ParticipatingContactPersons", relatedTypeName: "ContactPerson" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "Documents", relatedTypeName: "Document" }] as const, + PhasingResourceLinkVersion: [{ name: "TimePhaseDataVersion", relatedTypeName: "ResourceTimePhaseVersion" }] as const, + GenericPhasingResourceLinkVersion: [{ name: "TimePhaseDataVersion", relatedTypeName: "ResourceTimePhaseVersion" }] as const, + AssetResourceLinkVersion: [{ name: "TimePhaseDataVersion", relatedTypeName: "ResourceTimePhaseVersion" }] as const, + LaborResourceLinkVersion: [{ name: "TimePhaseDataVersion", relatedTypeName: "ResourceTimePhaseVersion" }] as const, + GenericLaborResourceLinkVersion: [{ name: "TimePhaseDataVersion", relatedTypeName: "ResourceTimePhaseVersion" }] as const, + FixedPriceResourceLinkVersion: [{ name: "TimePhaseDataVersion", relatedTypeName: "ResourceTimePhaseVersion" }] as const, + NonLaborResourceLinkVersion: [{ name: "TimePhaseDataVersion", relatedTypeName: "ResourceTimePhaseVersion" }] as const, + ResourceLinkFinancialVersion: [{ name: "TimePhaseDataVersion", relatedTypeName: "ResourceTimePhaseVersion" }] as const, + MilestoneVersion: [{ name: "WorkItemVersionNonLaborResources", relatedTypeName: "NonLaborResource" }, { name: "VersionFixedPriceResources", relatedTypeName: "FixedPriceResource" }, { name: "VersionLaborResources", relatedTypeName: "ResourceEntity" }, { name: "VersionFinancialResources", relatedTypeName: "GenericResourceEntity" }, { name: "ChildrenVersionObjects", relatedTypeName: "WorkItemVersion" }] as const, + ProjectVersion: [{ name: "WorkItemVersionNonLaborResources", relatedTypeName: "NonLaborResource" }, { name: "VersionFixedPriceResources", relatedTypeName: "FixedPriceResource" }, { name: "VersionLaborResources", relatedTypeName: "ResourceEntity" }, { name: "Children", relatedTypeName: "WorkItemVersion" }, { name: "VersionFinancialResources", relatedTypeName: "GenericResourceEntity" }, { name: "ChildrenVersionObjects", relatedTypeName: "WorkItemVersion" }] as const, + WorkItemVersion: [{ name: "ChildrenVersionObjects", relatedTypeName: "WorkItemVersion" }, { name: "WorkItemVersionNonLaborResources", relatedTypeName: "NonLaborResource" }, { name: "VersionFixedPriceResources", relatedTypeName: "FixedPriceResource" }, { name: "VersionLaborResources", relatedTypeName: "ResourceEntity" }, { name: "VersionFinancialResources", relatedTypeName: "GenericResourceEntity" }, { name: "Children", relatedTypeName: "WorkItemVersion" }] as const, + Versions: [{ name: "WorkItemObjects", relatedTypeName: "WorkItemVersion" }] as const, + PhasingResourceTimePhaseVersion: [] as const, + GenPhasingResourceTimePhaseVersion: [] as const, + AssetResourceTimePhaseVersion: [] as const, + LaborResourceTimePhaseVersion: [] as const, + GenericLaborResourceTimePhaseVersion: [] as const, + FixedPriceResourceTimePhaseVersion: [] as const, + NonLaborResourceTimePhaseVersion: [] as const, + ResourceTimePhaseVersion: [] as const, + PortfolioProjectLink: [] as const, + PortfolioProgramLink: [] as const, + PortfolioLink: [] as const, + Portfolio: [{ name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "Documents", relatedTypeName: "Document" }, { name: "Programs", relatedTypeName: "Program" }, { name: "Projects", relatedTypeName: "Project" }, { name: "Targets", relatedTypeName: "Target" }, { name: "Objectives", relatedTypeName: "Objective" }, { name: "Contributions", relatedTypeName: "Contribution" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ProjectsAndPrograms", relatedTypeName: "GenericProject" }, { name: "AdditionalObjectProperties", relatedTypeName: "AdditionalObjectProperties" }] as const, + TimesheetApprovalDelegateLink: [] as const, + ApprovalDelegateLink: [] as const, + RateCardVersion: [{ name: "Rates", relatedTypeName: "Rate" }] as const, + RateCardItem: [{ name: "AssignedRates", relatedTypeName: "Rate" }] as const, + RateCard: [{ name: "VersionRates", relatedTypeName: "Rate" }, { name: "Projects", relatedTypeName: "GenericProject" }, { name: "RateCardItems", relatedTypeName: "RateCardItem" }, { name: "RateCardVersions", relatedTypeName: "RateCardVersion" }] as const, + IntegrationNewObjFieldValue: [] as const, + IntegrationEventDefRelation: [] as const, + IntegrationEventSyncCondition: [] as const, + EmploymentHistory: [] as const, + UCTimePhaseMonthly: [{ name: "LoadForMonthly", relatedTypeName: "WorkItem" }, { name: "StaffTimePhasedDataForMonthly", relatedTypeName: "WorkItem" }] as const, + UCTimePhaseDaily: [{ name: "LoadFor", relatedTypeName: "WorkItem" }, { name: "StaffTimePhasedDataForDaily", relatedTypeName: "WorkItem" }] as const, + UCTimePhase: [{ name: "LoadForMonthly", relatedTypeName: "WorkItem" }, { name: "StaffTimePhasedDataForMonthly", relatedTypeName: "WorkItem" }, { name: "LoadFor", relatedTypeName: "WorkItem" }, { name: "StaffTimePhasedDataForDaily", relatedTypeName: "WorkItem" }] as const, + RLTimePhaseMonthly: [] as const, + RLTimePhaseDaily: [] as const, + RLTimePhase: [] as const, + ResourceRequestSkillLink: [] as const, + ResourceRequest: [{ name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "Skills", relatedTypeName: "Skill" }, { name: "TimePhaseData", relatedTypeName: "RRTimePhase" }] as const, + RRTimePhase: [] as const, + Template: [] as const, + NonLaborPhasingResource: [] as const, + LaborPhasingResource: [] as const, + FixedPricePhasingResource: [] as const, + AssetPhasingResource: [] as const, + PhasingResource: [] as const, + FixedPriceResource: [] as const, + NonLaborResource: [{ name: "RelatedWorkItemVersions", relatedTypeName: "WorkItemVersion" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "Documents", relatedTypeName: "Document" }, { name: "NLROfWorkItems", relatedTypeName: "WorkItem" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }] as const, + User: [{ name: "TechAccountManagerOfCustomers", relatedTypeName: "Customer" }, { name: "AccountOwnerOfCustomers", relatedTypeName: "Customer" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "UsersImFollowing", relatedTypeName: "User" }, { name: "CreatedTimesheets", relatedTypeName: "Timesheet" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "MemberOfWorkItems", relatedTypeName: "WorkItem" }, { name: "MemberOfGroups", relatedTypeName: "Group" }, { name: "ApprovedTimesheets", relatedTypeName: "Timesheet" }, { name: "OwnedExpenses", relatedTypeName: "ExpenseSheet" }, { name: "ExpensesApprovedBy", relatedTypeName: "ExpenseSheet" }, { name: "ApproverOfExpenses", relatedTypeName: "ExpenseSheet" }, { name: "OwnerOfIssues", relatedTypeName: "Case" }, { name: "AssignedIssues", relatedTypeName: "Case" }, { name: "SubmittedIssues", relatedTypeName: "Case" }, { name: "EvaluatedIssues", relatedTypeName: "Case" }, { name: "OpenedByIssues", relatedTypeName: "Case" }, { name: "ResolvedIssues", relatedTypeName: "Case" }, { name: "ClosedByIssues", relatedTypeName: "Case" }, { name: "RejectedIssues", relatedTypeName: "Case" }, { name: "ReopenedIssues", relatedTypeName: "Case" }, { name: "DeferredByIssues", relatedTypeName: "Case" }, { name: "Issues", relatedTypeName: "Case" }, { name: "ReviewerOfWorkItems", relatedTypeName: "WorkItem" }, { name: "ManagerOfWorkItems", relatedTypeName: "WorkItem" }, { name: "MemberOf", relatedTypeName: "Group" }, { name: "Skills", relatedTypeName: "Skill" }, { name: "ProjectManagerOfProjects", relatedTypeName: "GenericProject" }, { name: "ProjectSponsorOfProjects", relatedTypeName: "GenericProject" }, { name: "Subordinates", relatedTypeName: "User" }, { name: "WorkItems", relatedTypeName: "WorkItem" }, { name: "WorkItemIOpenedStopwatch", relatedTypeName: "WorkItem" }, { name: "RecipientOfEmails", relatedTypeName: "EmailRecipient" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "DirectManagerOfGroups", relatedTypeName: "UserGroup" }, { name: "ReportedTimesheets", relatedTypeName: "Timesheet" }, { name: "RestrictedFieldsSet", relatedTypeName: "RestrictedFieldsSet" }, { name: "OwnedProofs", relatedTypeName: "Document" }, { name: "Documents", relatedTypeName: "Document" }, { name: "ResourceManagerOfGroups", relatedTypeName: "UserGroup" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "ProgramManager", relatedTypeName: "Program" }, { name: "AssignedRates", relatedTypeName: "Rate" }, { name: "CapacityTimeline", relatedTypeName: "CapacityTimeline" }, { name: "OwnedWorkItem", relatedTypeName: "WorkItem" }, { name: "UserOpenProofs", relatedTypeName: "Document" }, { name: "ResourceManager", relatedTypeName: "User" }, { name: "RequestedFor", relatedTypeName: "GenericProject" }, { name: "StaffTimePhasedDataForDaily", relatedTypeName: "WorkItem" }, { name: "StaffTimePhasedDataForMonthly", relatedTypeName: "WorkItem" }, { name: "TimesheetApprovalDelegates", relatedTypeName: "User" }, { name: "TimesheetApprovalDelegators", relatedTypeName: "User" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "AssignedWorkItems", relatedTypeName: "WorkItem" }, { name: "CapacityOfUserDaily", relatedTypeName: "UCTimePhaseDaily" }, { name: "CapacityOfUserMonthly", relatedTypeName: "UCTimePhaseMonthly" }, { name: "LoadFor", relatedTypeName: "WorkItem" }, { name: "LoadForMonthly", relatedTypeName: "WorkItem" }] as const, + UserPlaceholder: [{ name: "AssignedWorkItems", relatedTypeName: "WorkItem" }, { name: "CapacityOfUserDaily", relatedTypeName: "UCTimePhaseDaily" }, { name: "CapacityOfUserMonthly", relatedTypeName: "UCTimePhaseMonthly" }, { name: "LoadFor", relatedTypeName: "WorkItem" }, { name: "LoadForMonthly", relatedTypeName: "WorkItem" }] as const, + GenericUser: [{ name: "AssignedWorkItems", relatedTypeName: "WorkItem" }, { name: "CapacityOfUserDaily", relatedTypeName: "UCTimePhaseDaily" }, { name: "CapacityOfUserMonthly", relatedTypeName: "UCTimePhaseMonthly" }, { name: "LoadFor", relatedTypeName: "WorkItem" }, { name: "LoadForMonthly", relatedTypeName: "WorkItem" }, { name: "TechAccountManagerOfCustomers", relatedTypeName: "Customer" }, { name: "AccountOwnerOfCustomers", relatedTypeName: "Customer" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "UsersImFollowing", relatedTypeName: "User" }, { name: "CreatedTimesheets", relatedTypeName: "Timesheet" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "MemberOfWorkItems", relatedTypeName: "WorkItem" }, { name: "ApprovedTimesheets", relatedTypeName: "Timesheet" }, { name: "OwnedExpenses", relatedTypeName: "ExpenseSheet" }, { name: "ExpensesApprovedBy", relatedTypeName: "ExpenseSheet" }, { name: "ApproverOfExpenses", relatedTypeName: "ExpenseSheet" }, { name: "OwnerOfIssues", relatedTypeName: "Case" }, { name: "AssignedIssues", relatedTypeName: "Case" }, { name: "SubmittedIssues", relatedTypeName: "Case" }, { name: "EvaluatedIssues", relatedTypeName: "Case" }, { name: "OpenedByIssues", relatedTypeName: "Case" }, { name: "ResolvedIssues", relatedTypeName: "Case" }, { name: "ClosedByIssues", relatedTypeName: "Case" }, { name: "RejectedIssues", relatedTypeName: "Case" }, { name: "ReopenedIssues", relatedTypeName: "Case" }, { name: "DeferredByIssues", relatedTypeName: "Case" }, { name: "Issues", relatedTypeName: "Case" }, { name: "ReviewerOfWorkItems", relatedTypeName: "WorkItem" }, { name: "ManagerOfWorkItems", relatedTypeName: "WorkItem" }, { name: "MemberOf", relatedTypeName: "Group" }, { name: "Skills", relatedTypeName: "Skill" }, { name: "ProjectManagerOfProjects", relatedTypeName: "GenericProject" }, { name: "ProjectSponsorOfProjects", relatedTypeName: "GenericProject" }, { name: "Subordinates", relatedTypeName: "User" }, { name: "WorkItems", relatedTypeName: "WorkItem" }, { name: "WorkItemIOpenedStopwatch", relatedTypeName: "WorkItem" }, { name: "RecipientOfEmails", relatedTypeName: "EmailRecipient" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "DirectManagerOfGroups", relatedTypeName: "UserGroup" }, { name: "ReportedTimesheets", relatedTypeName: "Timesheet" }, { name: "RestrictedFieldsSet", relatedTypeName: "RestrictedFieldsSet" }, { name: "OwnedProofs", relatedTypeName: "Document" }, { name: "Documents", relatedTypeName: "Document" }, { name: "ResourceManagerOfGroups", relatedTypeName: "UserGroup" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "ProgramManager", relatedTypeName: "Program" }, { name: "AssignedRates", relatedTypeName: "Rate" }, { name: "CapacityTimeline", relatedTypeName: "CapacityTimeline" }, { name: "OwnedWorkItem", relatedTypeName: "WorkItem" }, { name: "UserOpenProofs", relatedTypeName: "Document" }, { name: "ResourceManager", relatedTypeName: "User" }, { name: "RequestedFor", relatedTypeName: "GenericProject" }, { name: "StaffTimePhasedDataForDaily", relatedTypeName: "WorkItem" }, { name: "StaffTimePhasedDataForMonthly", relatedTypeName: "WorkItem" }, { name: "TimesheetApprovalDelegates", relatedTypeName: "User" }, { name: "TimesheetApprovalDelegators", relatedTypeName: "User" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Decisions", relatedTypeName: "Decision" }] as const, + AssetPlaceholder: [{ name: "AssignedWorkItems", relatedTypeName: "WorkItem" }, { name: "CapacityOfUserDaily", relatedTypeName: "UCTimePhaseDaily" }, { name: "CapacityOfUserMonthly", relatedTypeName: "UCTimePhaseMonthly" }, { name: "LoadFor", relatedTypeName: "WorkItem" }, { name: "LoadForMonthly", relatedTypeName: "WorkItem" }] as const, + Asset: [{ name: "AttachedNotes", relatedTypeName: "Note" }, { name: "ReportedTimesheets", relatedTypeName: "Timesheet" }, { name: "AssignedRates", relatedTypeName: "Rate" }, { name: "OwnerOfIssues", relatedTypeName: "Case" }, { name: "AssignedIssues", relatedTypeName: "Case" }, { name: "SubmittedIssues", relatedTypeName: "Case" }, { name: "EvaluatedIssues", relatedTypeName: "Case" }, { name: "OpenedByIssues", relatedTypeName: "Case" }, { name: "ResolvedIssues", relatedTypeName: "Case" }, { name: "ClosedByIssues", relatedTypeName: "Case" }, { name: "RejectedIssues", relatedTypeName: "Case" }, { name: "ReopenedIssues", relatedTypeName: "Case" }, { name: "DeferredByIssues", relatedTypeName: "Case" }, { name: "MemberOfGroups", relatedTypeName: "UserGroup" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "CapacityOfUserDaily", relatedTypeName: "UCTimePhaseDaily" }, { name: "CapacityOfUserMonthly", relatedTypeName: "UCTimePhaseMonthly" }, { name: "CapacityTimeline", relatedTypeName: "CapacityTimeline" }, { name: "Documents", relatedTypeName: "Document" }, { name: "AssignedWorkItems", relatedTypeName: "WorkItem" }, { name: "LoadFor", relatedTypeName: "WorkItem" }, { name: "LoadForMonthly", relatedTypeName: "WorkItem" }] as const, + GenericAsset: [{ name: "AssignedWorkItems", relatedTypeName: "WorkItem" }, { name: "CapacityOfUserDaily", relatedTypeName: "UCTimePhaseDaily" }, { name: "CapacityOfUserMonthly", relatedTypeName: "UCTimePhaseMonthly" }, { name: "LoadFor", relatedTypeName: "WorkItem" }, { name: "LoadForMonthly", relatedTypeName: "WorkItem" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "ReportedTimesheets", relatedTypeName: "Timesheet" }, { name: "AssignedRates", relatedTypeName: "Rate" }, { name: "OwnerOfIssues", relatedTypeName: "Case" }, { name: "AssignedIssues", relatedTypeName: "Case" }, { name: "SubmittedIssues", relatedTypeName: "Case" }, { name: "EvaluatedIssues", relatedTypeName: "Case" }, { name: "OpenedByIssues", relatedTypeName: "Case" }, { name: "ResolvedIssues", relatedTypeName: "Case" }, { name: "ClosedByIssues", relatedTypeName: "Case" }, { name: "RejectedIssues", relatedTypeName: "Case" }, { name: "ReopenedIssues", relatedTypeName: "Case" }, { name: "DeferredByIssues", relatedTypeName: "Case" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "CapacityTimeline", relatedTypeName: "CapacityTimeline" }, { name: "Documents", relatedTypeName: "Document" }] as const, + WorkingEntity: [{ name: "CapacityOfUserDaily", relatedTypeName: "UCTimePhaseDaily" }, { name: "CapacityOfUserMonthly", relatedTypeName: "UCTimePhaseMonthly" }, { name: "LoadFor", relatedTypeName: "WorkItem" }, { name: "LoadForMonthly", relatedTypeName: "WorkItem" }, { name: "AssignedWorkItems", relatedTypeName: "WorkItem" }, { name: "TechAccountManagerOfCustomers", relatedTypeName: "Customer" }, { name: "AccountOwnerOfCustomers", relatedTypeName: "Customer" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "UsersImFollowing", relatedTypeName: "User" }, { name: "CreatedTimesheets", relatedTypeName: "Timesheet" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "MemberOfWorkItems", relatedTypeName: "WorkItem" }, { name: "ApprovedTimesheets", relatedTypeName: "Timesheet" }, { name: "OwnedExpenses", relatedTypeName: "ExpenseSheet" }, { name: "ExpensesApprovedBy", relatedTypeName: "ExpenseSheet" }, { name: "ApproverOfExpenses", relatedTypeName: "ExpenseSheet" }, { name: "OwnerOfIssues", relatedTypeName: "Case" }, { name: "AssignedIssues", relatedTypeName: "Case" }, { name: "SubmittedIssues", relatedTypeName: "Case" }, { name: "EvaluatedIssues", relatedTypeName: "Case" }, { name: "OpenedByIssues", relatedTypeName: "Case" }, { name: "ResolvedIssues", relatedTypeName: "Case" }, { name: "ClosedByIssues", relatedTypeName: "Case" }, { name: "RejectedIssues", relatedTypeName: "Case" }, { name: "ReopenedIssues", relatedTypeName: "Case" }, { name: "DeferredByIssues", relatedTypeName: "Case" }, { name: "Issues", relatedTypeName: "Case" }, { name: "ReviewerOfWorkItems", relatedTypeName: "WorkItem" }, { name: "ManagerOfWorkItems", relatedTypeName: "WorkItem" }, { name: "MemberOf", relatedTypeName: "Group" }, { name: "Skills", relatedTypeName: "Skill" }, { name: "ProjectManagerOfProjects", relatedTypeName: "GenericProject" }, { name: "ProjectSponsorOfProjects", relatedTypeName: "GenericProject" }, { name: "Subordinates", relatedTypeName: "User" }, { name: "WorkItems", relatedTypeName: "WorkItem" }, { name: "WorkItemIOpenedStopwatch", relatedTypeName: "WorkItem" }, { name: "RecipientOfEmails", relatedTypeName: "EmailRecipient" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "DirectManagerOfGroups", relatedTypeName: "UserGroup" }, { name: "ReportedTimesheets", relatedTypeName: "Timesheet" }, { name: "RestrictedFieldsSet", relatedTypeName: "RestrictedFieldsSet" }, { name: "OwnedProofs", relatedTypeName: "Document" }, { name: "Documents", relatedTypeName: "Document" }, { name: "ResourceManagerOfGroups", relatedTypeName: "UserGroup" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "ProgramManager", relatedTypeName: "Program" }, { name: "AssignedRates", relatedTypeName: "Rate" }, { name: "CapacityTimeline", relatedTypeName: "CapacityTimeline" }, { name: "OwnedWorkItem", relatedTypeName: "WorkItem" }, { name: "UserOpenProofs", relatedTypeName: "Document" }, { name: "ResourceManager", relatedTypeName: "User" }, { name: "RequestedFor", relatedTypeName: "GenericProject" }, { name: "StaffTimePhasedDataForDaily", relatedTypeName: "WorkItem" }, { name: "StaffTimePhasedDataForMonthly", relatedTypeName: "WorkItem" }, { name: "TimesheetApprovalDelegates", relatedTypeName: "User" }, { name: "TimesheetApprovalDelegators", relatedTypeName: "User" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Decisions", relatedTypeName: "Decision" }] as const, + Profile: [{ name: "ProfileUserGroups", relatedTypeName: "ResourceEntity" }] as const, + AssetType: [{ name: "Assets", relatedTypeName: "GenericAsset" }, { name: "JobTitleMembers", relatedTypeName: "ResourceEntity" }, { name: "AssignedRates", relatedTypeName: "Rate" }, { name: "GroupMembersAndPlaceholders", relatedTypeName: "GroupJobAssetType" }, { name: "Documents", relatedTypeName: "Document" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }] as const, + JobTitle: [{ name: "LikedBy", relatedTypeName: "User" }, { name: "WorkItems", relatedTypeName: "GenericProject" }, { name: "ProvidesRateFor", relatedTypeName: "GenericProject" }, { name: "StaffTimePhasedDataForDaily", relatedTypeName: "GenericProject" }, { name: "StaffTimePhasedDataForMonthly", relatedTypeName: "GenericProject" }, { name: "RequestedFor", relatedTypeName: "GenericProject" }, { name: "JobTitleMembers", relatedTypeName: "ResourceEntity" }, { name: "Users", relatedTypeName: "GenericUser" }, { name: "AssignedRates", relatedTypeName: "Rate" }, { name: "GroupMembersAndPlaceholders", relatedTypeName: "GroupJobAssetType" }, { name: "Documents", relatedTypeName: "Document" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }] as const, + JobAssetType: [{ name: "AssignedRates", relatedTypeName: "Rate" }, { name: "GroupMembersAndPlaceholders", relatedTypeName: "GroupJobAssetType" }, { name: "WorkingEntites", relatedTypeName: "WorkingEntity" }, { name: "Documents", relatedTypeName: "Document" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "JobTitleMembers", relatedTypeName: "ResourceEntity" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "WorkItems", relatedTypeName: "GenericProject" }, { name: "ProvidesRateFor", relatedTypeName: "GenericProject" }, { name: "StaffTimePhasedDataForDaily", relatedTypeName: "GenericProject" }, { name: "StaffTimePhasedDataForMonthly", relatedTypeName: "GenericProject" }, { name: "RequestedFor", relatedTypeName: "GenericProject" }] as const, + GroupAssetType: [{ name: "AssignedRates", relatedTypeName: "Rate" }, { name: "MemberOfGroups", relatedTypeName: "ResourceGroupEntity" }, { name: "Documents", relatedTypeName: "Document" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }] as const, + JobTitleInGroup: [{ name: "LoadFor", relatedTypeName: "WorkItem" }, { name: "LoadForMonthly", relatedTypeName: "WorkItem" }, { name: "AssignedWorkItems", relatedTypeName: "WorkItem" }, { name: "StaffTimePhasedDataForDaily", relatedTypeName: "WorkItem" }, { name: "StaffTimePhasedDataForMonthly", relatedTypeName: "WorkItem" }, { name: "AssignedRates", relatedTypeName: "Rate" }, { name: "MemberOfGroups", relatedTypeName: "ResourceGroupEntity" }, { name: "Documents", relatedTypeName: "Document" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }] as const, + GroupJobAssetType: [{ name: "AssignedRates", relatedTypeName: "Rate" }, { name: "MemberOfGroups", relatedTypeName: "ResourceGroupEntity" }, { name: "Documents", relatedTypeName: "Document" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "LoadFor", relatedTypeName: "WorkItem" }, { name: "LoadForMonthly", relatedTypeName: "WorkItem" }, { name: "AssignedWorkItems", relatedTypeName: "WorkItem" }, { name: "StaffTimePhasedDataForDaily", relatedTypeName: "WorkItem" }, { name: "StaffTimePhasedDataForMonthly", relatedTypeName: "WorkItem" }] as const, + DiscussionGroup: [{ name: "LikedBy", relatedTypeName: "User" }, { name: "RecipientOfEmails", relatedTypeName: "EmailRecipient" }, { name: "GroupMembersAndPlaceholders", relatedTypeName: "User" }, { name: "Projects", relatedTypeName: "GenericProject" }, { name: "Tasks", relatedTypeName: "GenericTask" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "Cases", relatedTypeName: "Case" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "IssuesForGroup", relatedTypeName: "Issue" }, { name: "RisksForGroup", relatedTypeName: "Risk" }, { name: "BugsForGroup", relatedTypeName: "Bug" }, { name: "EnhancementRequestForGroup", relatedTypeName: "EnhancementRequest" }, { name: "UserGroupMembers", relatedTypeName: "User" }, { name: "AssetGroupMembers", relatedTypeName: "UserGroup" }, { name: "Documents", relatedTypeName: "Document" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }] as const, + UserGroup: [{ name: "LikedBy", relatedTypeName: "User" }, { name: "SubGroups", relatedTypeName: "UserGroup" }, { name: "ParentGroups", relatedTypeName: "UserGroup" }, { name: "RecipientOfEmails", relatedTypeName: "EmailRecipient" }, { name: "Members", relatedTypeName: "ResourceEntity" }, { name: "MemberOf", relatedTypeName: "UserGroup" }, { name: "Skills", relatedTypeName: "Skill" }, { name: "AllMembers", relatedTypeName: "User" }, { name: "ResourceManagers", relatedTypeName: "User" }, { name: "CapacityOfUserDaily", relatedTypeName: "UCTimePhaseDaily" }, { name: "CapacityOfUserMonthly", relatedTypeName: "UCTimePhaseMonthly" }, { name: "AssignedRates", relatedTypeName: "Rate" }, { name: "AssignedWorkItems", relatedTypeName: "WorkItem" }, { name: "LoadFor", relatedTypeName: "WorkItem" }, { name: "LoadForMonthly", relatedTypeName: "WorkItem" }, { name: "StaffTimePhasedDataForDaily", relatedTypeName: "WorkItem" }, { name: "StaffTimePhasedDataForMonthly", relatedTypeName: "WorkItem" }, { name: "RequestedFor", relatedTypeName: "GenericProject" }, { name: "GroupMembersAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "Projects", relatedTypeName: "GenericProject" }, { name: "Tasks", relatedTypeName: "GenericTask" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "Cases", relatedTypeName: "Case" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "IssuesForGroup", relatedTypeName: "Issue" }, { name: "RisksForGroup", relatedTypeName: "Risk" }, { name: "BugsForGroup", relatedTypeName: "Bug" }, { name: "EnhancementRequestForGroup", relatedTypeName: "EnhancementRequest" }, { name: "UserGroupMembers", relatedTypeName: "User" }, { name: "AssetGroupMembers", relatedTypeName: "UserGroup" }, { name: "Documents", relatedTypeName: "Document" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }] as const, + Group: [{ name: "GroupMembersAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "Projects", relatedTypeName: "GenericProject" }, { name: "Tasks", relatedTypeName: "GenericTask" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "Cases", relatedTypeName: "Case" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "IssuesForGroup", relatedTypeName: "Issue" }, { name: "RisksForGroup", relatedTypeName: "Risk" }, { name: "BugsForGroup", relatedTypeName: "Bug" }, { name: "EnhancementRequestForGroup", relatedTypeName: "EnhancementRequest" }, { name: "UserGroupMembers", relatedTypeName: "User" }, { name: "AssetGroupMembers", relatedTypeName: "UserGroup" }, { name: "Documents", relatedTypeName: "Document" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "RecipientOfEmails", relatedTypeName: "EmailRecipient" }, { name: "SubGroups", relatedTypeName: "UserGroup" }, { name: "ParentGroups", relatedTypeName: "UserGroup" }, { name: "Members", relatedTypeName: "ResourceEntity" }, { name: "MemberOf", relatedTypeName: "UserGroup" }, { name: "Skills", relatedTypeName: "Skill" }, { name: "AllMembers", relatedTypeName: "User" }, { name: "ResourceManagers", relatedTypeName: "User" }, { name: "CapacityOfUserDaily", relatedTypeName: "UCTimePhaseDaily" }, { name: "CapacityOfUserMonthly", relatedTypeName: "UCTimePhaseMonthly" }, { name: "AssignedRates", relatedTypeName: "Rate" }, { name: "AssignedWorkItems", relatedTypeName: "WorkItem" }, { name: "LoadFor", relatedTypeName: "WorkItem" }, { name: "LoadForMonthly", relatedTypeName: "WorkItem" }, { name: "StaffTimePhasedDataForDaily", relatedTypeName: "WorkItem" }, { name: "StaffTimePhasedDataForMonthly", relatedTypeName: "WorkItem" }, { name: "RequestedFor", relatedTypeName: "GenericProject" }] as const, + Skill: [{ name: "LikedBy", relatedTypeName: "User" }, { name: "UserGroups", relatedTypeName: "ResourceEntity" }, { name: "Documents", relatedTypeName: "Document" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }] as const, + ResourceGroupEntity: [{ name: "Documents", relatedTypeName: "Document" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "AssignedRates", relatedTypeName: "Rate" }, { name: "GroupMembersAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "WorkingEntites", relatedTypeName: "WorkingEntity" }, { name: "JobTitleMembers", relatedTypeName: "ResourceEntity" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "WorkItems", relatedTypeName: "WorkItem" }, { name: "ProvidesRateFor", relatedTypeName: "GenericProject" }, { name: "StaffTimePhasedDataForDaily", relatedTypeName: "WorkItem" }, { name: "StaffTimePhasedDataForMonthly", relatedTypeName: "WorkItem" }, { name: "RequestedFor", relatedTypeName: "GenericProject" }, { name: "MemberOfGroups", relatedTypeName: "ResourceGroupEntity" }, { name: "LoadFor", relatedTypeName: "WorkItem" }, { name: "LoadForMonthly", relatedTypeName: "WorkItem" }, { name: "AssignedWorkItems", relatedTypeName: "WorkItem" }, { name: "Projects", relatedTypeName: "GenericProject" }, { name: "Tasks", relatedTypeName: "GenericTask" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "Cases", relatedTypeName: "Case" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "IssuesForGroup", relatedTypeName: "Issue" }, { name: "RisksForGroup", relatedTypeName: "Risk" }, { name: "BugsForGroup", relatedTypeName: "Bug" }, { name: "EnhancementRequestForGroup", relatedTypeName: "EnhancementRequest" }, { name: "UserGroupMembers", relatedTypeName: "User" }, { name: "AssetGroupMembers", relatedTypeName: "UserGroup" }, { name: "RecipientOfEmails", relatedTypeName: "EmailRecipient" }, { name: "SubGroups", relatedTypeName: "UserGroup" }, { name: "ParentGroups", relatedTypeName: "UserGroup" }, { name: "Members", relatedTypeName: "ResourceEntity" }, { name: "MemberOf", relatedTypeName: "ResourceGroupEntity" }, { name: "Skills", relatedTypeName: "Skill" }, { name: "AllMembers", relatedTypeName: "User" }, { name: "ResourceManagers", relatedTypeName: "User" }, { name: "CapacityOfUserDaily", relatedTypeName: "UCTimePhaseDaily" }, { name: "CapacityOfUserMonthly", relatedTypeName: "UCTimePhaseMonthly" }, { name: "UserGroups", relatedTypeName: "ResourceEntity" }] as const, + ResourceEntity: [{ name: "CapacityOfUserDaily", relatedTypeName: "UCTimePhaseDaily" }, { name: "CapacityOfUserMonthly", relatedTypeName: "UCTimePhaseMonthly" }, { name: "LoadFor", relatedTypeName: "WorkItem" }, { name: "LoadForMonthly", relatedTypeName: "WorkItem" }, { name: "AssignedWorkItems", relatedTypeName: "WorkItem" }, { name: "TechAccountManagerOfCustomers", relatedTypeName: "Customer" }, { name: "AccountOwnerOfCustomers", relatedTypeName: "Customer" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "UsersImFollowing", relatedTypeName: "User" }, { name: "CreatedTimesheets", relatedTypeName: "Timesheet" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "MemberOfWorkItems", relatedTypeName: "WorkItem" }, { name: "ApprovedTimesheets", relatedTypeName: "Timesheet" }, { name: "OwnedExpenses", relatedTypeName: "ExpenseSheet" }, { name: "ExpensesApprovedBy", relatedTypeName: "ExpenseSheet" }, { name: "ApproverOfExpenses", relatedTypeName: "ExpenseSheet" }, { name: "OwnerOfIssues", relatedTypeName: "Case" }, { name: "AssignedIssues", relatedTypeName: "Case" }, { name: "SubmittedIssues", relatedTypeName: "Case" }, { name: "EvaluatedIssues", relatedTypeName: "Case" }, { name: "OpenedByIssues", relatedTypeName: "Case" }, { name: "ResolvedIssues", relatedTypeName: "Case" }, { name: "ClosedByIssues", relatedTypeName: "Case" }, { name: "RejectedIssues", relatedTypeName: "Case" }, { name: "ReopenedIssues", relatedTypeName: "Case" }, { name: "DeferredByIssues", relatedTypeName: "Case" }, { name: "Issues", relatedTypeName: "Case" }, { name: "ReviewerOfWorkItems", relatedTypeName: "WorkItem" }, { name: "ManagerOfWorkItems", relatedTypeName: "WorkItem" }, { name: "MemberOf", relatedTypeName: "ResourceGroupEntity" }, { name: "Skills", relatedTypeName: "Skill" }, { name: "ProjectManagerOfProjects", relatedTypeName: "GenericProject" }, { name: "ProjectSponsorOfProjects", relatedTypeName: "GenericProject" }, { name: "Subordinates", relatedTypeName: "User" }, { name: "WorkItems", relatedTypeName: "WorkItem" }, { name: "WorkItemIOpenedStopwatch", relatedTypeName: "WorkItem" }, { name: "RecipientOfEmails", relatedTypeName: "EmailRecipient" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "DirectManagerOfGroups", relatedTypeName: "UserGroup" }, { name: "ReportedTimesheets", relatedTypeName: "Timesheet" }, { name: "RestrictedFieldsSet", relatedTypeName: "RestrictedFieldsSet" }, { name: "OwnedProofs", relatedTypeName: "Document" }, { name: "Documents", relatedTypeName: "Document" }, { name: "ResourceManagerOfGroups", relatedTypeName: "UserGroup" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "ProgramManager", relatedTypeName: "Program" }, { name: "AssignedRates", relatedTypeName: "Rate" }, { name: "CapacityTimeline", relatedTypeName: "CapacityTimeline" }, { name: "OwnedWorkItem", relatedTypeName: "WorkItem" }, { name: "UserOpenProofs", relatedTypeName: "Document" }, { name: "ResourceManager", relatedTypeName: "User" }, { name: "RequestedFor", relatedTypeName: "GenericProject" }, { name: "StaffTimePhasedDataForDaily", relatedTypeName: "WorkItem" }, { name: "StaffTimePhasedDataForMonthly", relatedTypeName: "WorkItem" }, { name: "TimesheetApprovalDelegates", relatedTypeName: "User" }, { name: "TimesheetApprovalDelegators", relatedTypeName: "User" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ProfileUserGroups", relatedTypeName: "ResourceEntity" }, { name: "GroupMembersAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "WorkingEntites", relatedTypeName: "WorkingEntity" }, { name: "JobTitleMembers", relatedTypeName: "ResourceEntity" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "ProvidesRateFor", relatedTypeName: "GenericProject" }, { name: "Projects", relatedTypeName: "GenericProject" }, { name: "Tasks", relatedTypeName: "GenericTask" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "Cases", relatedTypeName: "Case" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "IssuesForGroup", relatedTypeName: "Issue" }, { name: "RisksForGroup", relatedTypeName: "Risk" }, { name: "BugsForGroup", relatedTypeName: "Bug" }, { name: "EnhancementRequestForGroup", relatedTypeName: "EnhancementRequest" }, { name: "UserGroupMembers", relatedTypeName: "User" }, { name: "AssetGroupMembers", relatedTypeName: "UserGroup" }, { name: "SubGroups", relatedTypeName: "UserGroup" }, { name: "ParentGroups", relatedTypeName: "UserGroup" }, { name: "Members", relatedTypeName: "ResourceEntity" }, { name: "AllMembers", relatedTypeName: "User" }, { name: "ResourceManagers", relatedTypeName: "User" }, { name: "UserGroups", relatedTypeName: "ResourceEntity" }] as const, + GenericResourceEntity: [{ name: "RelatedWorkItemVersions", relatedTypeName: "WorkItemVersion" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "Documents", relatedTypeName: "Document" }, { name: "NLROfWorkItems", relatedTypeName: "WorkItem" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "CapacityOfUserDaily", relatedTypeName: "UCTimePhaseDaily" }, { name: "CapacityOfUserMonthly", relatedTypeName: "UCTimePhaseMonthly" }, { name: "LoadFor", relatedTypeName: "WorkItem" }, { name: "LoadForMonthly", relatedTypeName: "WorkItem" }, { name: "AssignedWorkItems", relatedTypeName: "WorkItem" }, { name: "TechAccountManagerOfCustomers", relatedTypeName: "Customer" }, { name: "AccountOwnerOfCustomers", relatedTypeName: "Customer" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "UsersImFollowing", relatedTypeName: "User" }, { name: "CreatedTimesheets", relatedTypeName: "Timesheet" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "MemberOfWorkItems", relatedTypeName: "WorkItem" }, { name: "ApprovedTimesheets", relatedTypeName: "Timesheet" }, { name: "OwnedExpenses", relatedTypeName: "ExpenseSheet" }, { name: "ExpensesApprovedBy", relatedTypeName: "ExpenseSheet" }, { name: "ApproverOfExpenses", relatedTypeName: "ExpenseSheet" }, { name: "OwnerOfIssues", relatedTypeName: "Case" }, { name: "AssignedIssues", relatedTypeName: "Case" }, { name: "SubmittedIssues", relatedTypeName: "Case" }, { name: "EvaluatedIssues", relatedTypeName: "Case" }, { name: "OpenedByIssues", relatedTypeName: "Case" }, { name: "ResolvedIssues", relatedTypeName: "Case" }, { name: "ClosedByIssues", relatedTypeName: "Case" }, { name: "RejectedIssues", relatedTypeName: "Case" }, { name: "ReopenedIssues", relatedTypeName: "Case" }, { name: "DeferredByIssues", relatedTypeName: "Case" }, { name: "Issues", relatedTypeName: "Case" }, { name: "ReviewerOfWorkItems", relatedTypeName: "WorkItem" }, { name: "ManagerOfWorkItems", relatedTypeName: "WorkItem" }, { name: "MemberOf", relatedTypeName: "ResourceGroupEntity" }, { name: "Skills", relatedTypeName: "Skill" }, { name: "ProjectManagerOfProjects", relatedTypeName: "GenericProject" }, { name: "ProjectSponsorOfProjects", relatedTypeName: "GenericProject" }, { name: "Subordinates", relatedTypeName: "User" }, { name: "WorkItems", relatedTypeName: "WorkItem" }, { name: "WorkItemIOpenedStopwatch", relatedTypeName: "WorkItem" }, { name: "RecipientOfEmails", relatedTypeName: "EmailRecipient" }, { name: "DirectManagerOfGroups", relatedTypeName: "UserGroup" }, { name: "ReportedTimesheets", relatedTypeName: "Timesheet" }, { name: "RestrictedFieldsSet", relatedTypeName: "RestrictedFieldsSet" }, { name: "OwnedProofs", relatedTypeName: "Document" }, { name: "ResourceManagerOfGroups", relatedTypeName: "UserGroup" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "ProgramManager", relatedTypeName: "Program" }, { name: "AssignedRates", relatedTypeName: "Rate" }, { name: "CapacityTimeline", relatedTypeName: "CapacityTimeline" }, { name: "OwnedWorkItem", relatedTypeName: "WorkItem" }, { name: "UserOpenProofs", relatedTypeName: "Document" }, { name: "ResourceManager", relatedTypeName: "User" }, { name: "RequestedFor", relatedTypeName: "GenericProject" }, { name: "StaffTimePhasedDataForDaily", relatedTypeName: "WorkItem" }, { name: "StaffTimePhasedDataForMonthly", relatedTypeName: "WorkItem" }, { name: "TimesheetApprovalDelegates", relatedTypeName: "User" }, { name: "TimesheetApprovalDelegators", relatedTypeName: "User" }, { name: "ProfileUserGroups", relatedTypeName: "ResourceEntity" }, { name: "GroupMembersAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "WorkingEntites", relatedTypeName: "WorkingEntity" }, { name: "JobTitleMembers", relatedTypeName: "ResourceEntity" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "ProvidesRateFor", relatedTypeName: "GenericProject" }, { name: "Projects", relatedTypeName: "GenericProject" }, { name: "Tasks", relatedTypeName: "GenericTask" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "Cases", relatedTypeName: "Case" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "IssuesForGroup", relatedTypeName: "Issue" }, { name: "RisksForGroup", relatedTypeName: "Risk" }, { name: "BugsForGroup", relatedTypeName: "Bug" }, { name: "EnhancementRequestForGroup", relatedTypeName: "EnhancementRequest" }, { name: "UserGroupMembers", relatedTypeName: "User" }, { name: "AssetGroupMembers", relatedTypeName: "UserGroup" }, { name: "SubGroups", relatedTypeName: "UserGroup" }, { name: "ParentGroups", relatedTypeName: "UserGroup" }, { name: "Members", relatedTypeName: "ResourceEntity" }, { name: "AllMembers", relatedTypeName: "User" }, { name: "ResourceManagers", relatedTypeName: "User" }, { name: "UserGroups", relatedTypeName: "ResourceEntity" }] as const, + FileTemplate: [] as const, + Document: [{ name: "LikedBy", relatedTypeName: "User" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "Groups", relatedTypeName: "ResourceGroupEntity" }, { name: "DiscussionMessages", relatedTypeName: "DiscussionMessage" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "ExpenseSheets", relatedTypeName: "ExpenseSheet" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "WorkItems", relatedTypeName: "WorkItem" }, { name: "ExpenseEntries", relatedTypeName: "Expense" }, { name: "Issues", relatedTypeName: "Case" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "Users", relatedTypeName: "User" }, { name: "ProofReviewers", relatedTypeName: "User" }, { name: "Reports", relatedTypeName: "Report" }, { name: "Dashboards", relatedTypeName: "Dashboard" }, { name: "Lines", relatedTypeName: "String" }, { name: "Contracts", relatedTypeName: "Contract" }, { name: "ContractPurchaseOrders", relatedTypeName: "ContractPurchaseOrder" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "NonLaborResource", relatedTypeName: "NonLaborResource" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "BusinessUnits", relatedTypeName: "BusinessUnit" }, { name: "Portfolios", relatedTypeName: "Portfolio" }, { name: "Targets", relatedTypeName: "Target" }, { name: "Objectives", relatedTypeName: "Objective" }, { name: "Contributions", relatedTypeName: "Contribution" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Assets", relatedTypeName: "Asset" }] as const, + BaseFile: [{ name: "LikedBy", relatedTypeName: "User" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "Groups", relatedTypeName: "ResourceGroupEntity" }, { name: "DiscussionMessages", relatedTypeName: "DiscussionMessage" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "ExpenseSheets", relatedTypeName: "ExpenseSheet" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "WorkItems", relatedTypeName: "WorkItem" }, { name: "ExpenseEntries", relatedTypeName: "Expense" }, { name: "Issues", relatedTypeName: "Case" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "Users", relatedTypeName: "User" }, { name: "ProofReviewers", relatedTypeName: "User" }, { name: "Reports", relatedTypeName: "Report" }, { name: "Dashboards", relatedTypeName: "Dashboard" }, { name: "Lines", relatedTypeName: "String" }, { name: "Contracts", relatedTypeName: "Contract" }, { name: "ContractPurchaseOrders", relatedTypeName: "ContractPurchaseOrder" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "NonLaborResource", relatedTypeName: "NonLaborResource" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "BusinessUnits", relatedTypeName: "BusinessUnit" }, { name: "Portfolios", relatedTypeName: "Portfolio" }, { name: "Targets", relatedTypeName: "Target" }, { name: "Objectives", relatedTypeName: "Objective" }, { name: "Contributions", relatedTypeName: "Contribution" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Assets", relatedTypeName: "Asset" }] as const, + PhasingResourceLinkDirect: [{ name: "TimePhaseData", relatedTypeName: "GenericPhasingResourceTimePhase" }, { name: "SnapshotVersionData", relatedTypeName: "ResourceLinkFinancialVersion" }] as const, + PhasingResourceLinkAggregated: [{ name: "TimePhaseData", relatedTypeName: "GenericPhasingResourceTimePhase" }, { name: "SnapshotVersionData", relatedTypeName: "ResourceLinkFinancialVersion" }] as const, + PhasingResourceLink: [{ name: "TimePhaseData", relatedTypeName: "GenericPhasingResourceTimePhase" }, { name: "SnapshotVersionData", relatedTypeName: "ResourceLinkFinancialVersion" }] as const, + GenericPhasingResourceLink: [{ name: "TimePhaseData", relatedTypeName: "GenericPhasingResourceTimePhase" }, { name: "SnapshotVersionData", relatedTypeName: "ResourceLinkFinancialVersion" }] as const, + AssetResourceLinkAggregated: [{ name: "TimePhaseData", relatedTypeName: "GenericLaborResourceTimePhase" }, { name: "SnapshotVersionData", relatedTypeName: "ResourceLinkFinancialVersion" }] as const, + AssetResourceLinkDirect: [{ name: "TimePhaseData", relatedTypeName: "GenericLaborResourceTimePhase" }, { name: "SnapshotVersionData", relatedTypeName: "ResourceLinkFinancialVersion" }] as const, + AssetResourceLink: [{ name: "TimePhaseData", relatedTypeName: "GenericLaborResourceTimePhase" }, { name: "SnapshotVersionData", relatedTypeName: "ResourceLinkFinancialVersion" }] as const, + LaborResourceLinkAggregated: [{ name: "TimePhaseData", relatedTypeName: "GenericLaborResourceTimePhase" }, { name: "SnapshotVersionData", relatedTypeName: "ResourceLinkFinancialVersion" }] as const, + LaborResourceLinkDirect: [{ name: "TimePhaseData", relatedTypeName: "GenericLaborResourceTimePhase" }, { name: "SnapshotVersionData", relatedTypeName: "ResourceLinkFinancialVersion" }] as const, + LaborResourceLink: [{ name: "TimePhaseData", relatedTypeName: "GenericLaborResourceTimePhase" }, { name: "SnapshotVersionData", relatedTypeName: "ResourceLinkFinancialVersion" }] as const, + GenericLaborResourceLink: [{ name: "TimePhaseData", relatedTypeName: "GenericLaborResourceTimePhase" }, { name: "SnapshotVersionData", relatedTypeName: "ResourceLinkFinancialVersion" }] as const, + FixedPriceResourceLinkAggregated: [{ name: "TimePhaseData", relatedTypeName: "FixedPriceResourceTimePhase" }, { name: "SnapshotVersionData", relatedTypeName: "ResourceLinkFinancialVersion" }] as const, + FixedPriceResourceLinkDirect: [{ name: "TimePhaseData", relatedTypeName: "FixedPriceResourceTimePhase" }, { name: "SnapshotVersionData", relatedTypeName: "ResourceLinkFinancialVersion" }] as const, + FixedPriceResourceLink: [{ name: "TimePhaseData", relatedTypeName: "FixedPriceResourceTimePhase" }, { name: "SnapshotVersionData", relatedTypeName: "ResourceLinkFinancialVersion" }] as const, + NonLaborResourceLinkAggregated: [{ name: "TimePhaseData", relatedTypeName: "ResourceTimePhase" }, { name: "SnapshotVersionData", relatedTypeName: "ResourceLinkFinancialVersion" }] as const, + NonLaborResourceLinkDirect: [{ name: "TimePhaseData", relatedTypeName: "ResourceTimePhase" }, { name: "SnapshotVersionData", relatedTypeName: "ResourceLinkFinancialVersion" }] as const, + NonLaborResourceLink: [{ name: "TimePhaseData", relatedTypeName: "ResourceTimePhase" }, { name: "SnapshotVersionData", relatedTypeName: "ResourceLinkFinancialVersion" }] as const, + ResourceLinkFinancial: [{ name: "SnapshotVersionData", relatedTypeName: "ResourceLinkFinancialVersion" }, { name: "TimePhaseData", relatedTypeName: "GenericPhasingResourceTimePhase" }] as const, + PhasingResourceTimePhase: [{ name: "SnapshotVersionData", relatedTypeName: "ResourceTimePhaseVersion" }] as const, + GenericPhasingResourceTimePhase: [{ name: "SnapshotVersionData", relatedTypeName: "ResourceTimePhaseVersion" }] as const, + AssetResourceTimePhase: [{ name: "SnapshotVersionData", relatedTypeName: "ResourceTimePhaseVersion" }] as const, + LaborResourceTimePhase: [{ name: "SnapshotVersionData", relatedTypeName: "ResourceTimePhaseVersion" }] as const, + GenericLaborResourceTimePhase: [{ name: "SnapshotVersionData", relatedTypeName: "ResourceTimePhaseVersion" }] as const, + FixedPriceResourceTimePhase: [{ name: "SnapshotVersionData", relatedTypeName: "ResourceTimePhaseVersion" }] as const, + NonLaborResourceTimePhase: [{ name: "SnapshotVersionData", relatedTypeName: "ResourceTimePhaseVersion" }] as const, + ResourceTimePhase: [{ name: "SnapshotVersionData", relatedTypeName: "ResourceTimePhaseVersion" }] as const, + LaborResourceSnapshot: [{ name: "UCTimePhaseDataDaily", relatedTypeName: "UCTimePhaseDaily" }, { name: "UCTimePhaseDataMonthly", relatedTypeName: "UCTimePhaseMonthly" }, { name: "RLTimePhaseDataDaily", relatedTypeName: "RLTimePhaseDaily" }] as const, + AdditionalObjectProperties: [] as const, + PushNotification: [] as const, + Data: [] as const, + WorkByDay: [] as const, + ResourceCalendarExceptionAbsolute: [] as const, + ResourceCalendarExceptionRelative: [] as const, + ResourceCalendarException: [] as const, + ReportShortcutLink: [] as const, + ReportsHierarchyLink: [] as const, + ReportsFolderContentLink: [] as const, + FolderContentLink: [] as const, + Dashboard: [{ name: "AttachedEmails", relatedTypeName: "Email" }, { name: "Documents", relatedTypeName: "Document" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "DataObjects", relatedTypeName: "Data" }] as const, + Report: [{ name: "AttachedEmails", relatedTypeName: "Email" }, { name: "Documents", relatedTypeName: "Document" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "DataObjects", relatedTypeName: "Data" }] as const, + ReportAndDashboard: [{ name: "DirectFollowers", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "Documents", relatedTypeName: "Document" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Decisions", relatedTypeName: "Decision" }] as const, + FolderForReport: [{ name: "AllSubItems", relatedTypeName: "ReportAndDashboard" }, { name: "ReportsInFolder", relatedTypeName: "ReportAndDashboard" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "DataObjects", relatedTypeName: "Data" }] as const, + FoldersAndReports: [{ name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "Documents", relatedTypeName: "Document" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "AllSubItems", relatedTypeName: "ReportAndDashboard" }, { name: "ReportsInFolder", relatedTypeName: "ReportAndDashboard" }] as const, + Permission: [] as const, + DependencyLink: [] as const, + IntegrationsRegistry: [] as const, + TopicDocumentLink: [] as const, + TopicDiscussionLink: [] as const, + TopicGroupLink: [] as const, + TopicExpenseEntryLink: [] as const, + TopicExpenseSheetLink: [] as const, + TopicCustomerLink: [] as const, + TopicCaseLink: [] as const, + TopicWorkItemLink: [] as const, + TopicLink: [] as const, + Milestone: [{ name: "AllImpacting", relatedTypeName: "PlanningComponent" }, { name: "Tasks", relatedTypeName: "GenericTask" }, { name: "Children", relatedTypeName: "GenericTask" }, { name: "Shortcuts", relatedTypeName: "PlanningComponent" }, { name: "Impacting", relatedTypeName: "PlanningComponent" }, { name: "AggregatedAssetResources", relatedTypeName: "GenericAsset" }, { name: "AggregatedLaborResources", relatedTypeName: "ResourceEntity" }, { name: "DirectFixedPriceResources", relatedTypeName: "FixedPriceResource" }, { name: "AggregatedFixedPriceResources", relatedTypeName: "FixedPriceResource" }, { name: "FinancialResources", relatedTypeName: "GenericResourceEntity" }, { name: "DirectNonLaborResources", relatedTypeName: "NonLaborResource" }, { name: "AggregatedNonLaborResources", relatedTypeName: "NonLaborResource" }, { name: "AllImpacted", relatedTypeName: "WorkItem" }, { name: "WhereUsedAsShortcut", relatedTypeName: "WorkItem" }, { name: "ImpactedBy", relatedTypeName: "WorkItem" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "RelatedExpenses", relatedTypeName: "Expense" }, { name: "Followers", relatedTypeName: "User" }, { name: "ProjectCustomers", relatedTypeName: "Customer" }, { name: "TeamMembersAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "AttachedPosts", relatedTypeName: "Post" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "RelatedTimesheetEntries", relatedTypeName: "Timesheet" }, { name: "Expenses", relatedTypeName: "Expense" }, { name: "OriginatedIssues", relatedTypeName: "Case" }, { name: "Issues", relatedTypeName: "Case" }, { name: "ResourcesAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "Reviewers", relatedTypeName: "User" }, { name: "Managers", relatedTypeName: "User" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "AllTeamMembersAndPlaceholders", relatedTypeName: "User" }, { name: "AllManagers", relatedTypeName: "User" }, { name: "AllReviewers", relatedTypeName: "User" }, { name: "AllResourcesAndPlaceholders", relatedTypeName: "User" }, { name: "Successors", relatedTypeName: "WorkItem" }, { name: "Predecessors", relatedTypeName: "WorkItem" }, { name: "AllTeam", relatedTypeName: "ResourceEntity" }, { name: "Documents", relatedTypeName: "Document" }, { name: "UsersOpenedStopwatches", relatedTypeName: "User" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "AllWorkItemsWithShortcuts", relatedTypeName: "WorkItem" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "CustomizationProfilingData", relatedTypeName: "CustomizationProfilingData" }, { name: "AdditionalObjectProperties", relatedTypeName: "AdditionalObjectProperties" }, { name: "RelatedIssues", relatedTypeName: "Issue" }, { name: "RelatedRisks", relatedTypeName: "Risk" }, { name: "RelatedBugs", relatedTypeName: "Bug" }, { name: "RelatedRequests", relatedTypeName: "EnhancementRequest" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "LoadOfUserMonthly", relatedTypeName: "ResourceEntity" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "SnapshotVersionData", relatedTypeName: "WorkItemVersion" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "LoadOfUser", relatedTypeName: "ResourceEntity" }, { name: "StaffTimePhasedDataOfUserDaily", relatedTypeName: "ResourceEntity" }, { name: "StaffTimePhasedDataOfUserMonthly", relatedTypeName: "ResourceEntity" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Targets", relatedTypeName: "Target" }, { name: "Objectives", relatedTypeName: "Objective" }, { name: "Contributions", relatedTypeName: "Contribution" }, { name: "UserTeamMembers", relatedTypeName: "User" }, { name: "AllUserResources", relatedTypeName: "User" }, { name: "UserResources", relatedTypeName: "GenericUser" }, { name: "AllUserTeamMembers", relatedTypeName: "User" }] as const, + Task: [{ name: "DirectLaborResources", relatedTypeName: "ResourceEntity" }, { name: "DirectNonLaborResources", relatedTypeName: "NonLaborResource" }, { name: "DirectFixedPriceResources", relatedTypeName: "FixedPriceResource" }, { name: "FinancialResources", relatedTypeName: "GenericResourceEntity" }, { name: "DirectAssetResources", relatedTypeName: "GenericAsset" }, { name: "Groups", relatedTypeName: "Group" }, { name: "AllImpacting", relatedTypeName: "GenericTask" }, { name: "Children", relatedTypeName: "GenericTask" }, { name: "Shortcuts", relatedTypeName: "GenericTask" }, { name: "Impacting", relatedTypeName: "GenericTask" }, { name: "AllImpacted", relatedTypeName: "WorkItem" }, { name: "WhereUsedAsShortcut", relatedTypeName: "WorkItem" }, { name: "ImpactedBy", relatedTypeName: "WorkItem" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "RelatedExpenses", relatedTypeName: "Expense" }, { name: "Followers", relatedTypeName: "User" }, { name: "ProjectCustomers", relatedTypeName: "Customer" }, { name: "TeamMembersAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "AttachedPosts", relatedTypeName: "Post" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "RelatedTimesheetEntries", relatedTypeName: "Timesheet" }, { name: "Expenses", relatedTypeName: "Expense" }, { name: "OriginatedIssues", relatedTypeName: "Case" }, { name: "Issues", relatedTypeName: "Case" }, { name: "ResourcesAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "Reviewers", relatedTypeName: "User" }, { name: "Managers", relatedTypeName: "User" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "AllTeamMembersAndPlaceholders", relatedTypeName: "User" }, { name: "AllManagers", relatedTypeName: "User" }, { name: "AllReviewers", relatedTypeName: "User" }, { name: "AllResourcesAndPlaceholders", relatedTypeName: "User" }, { name: "Successors", relatedTypeName: "WorkItem" }, { name: "Predecessors", relatedTypeName: "WorkItem" }, { name: "AllTeam", relatedTypeName: "ResourceEntity" }, { name: "Documents", relatedTypeName: "Document" }, { name: "UsersOpenedStopwatches", relatedTypeName: "User" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "AllWorkItemsWithShortcuts", relatedTypeName: "WorkItem" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "CustomizationProfilingData", relatedTypeName: "CustomizationProfilingData" }, { name: "AdditionalObjectProperties", relatedTypeName: "AdditionalObjectProperties" }, { name: "RelatedIssues", relatedTypeName: "Issue" }, { name: "RelatedRisks", relatedTypeName: "Risk" }, { name: "RelatedBugs", relatedTypeName: "Bug" }, { name: "RelatedRequests", relatedTypeName: "EnhancementRequest" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "LoadOfUserMonthly", relatedTypeName: "ResourceEntity" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "SnapshotVersionData", relatedTypeName: "WorkItemVersion" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "LoadOfUser", relatedTypeName: "ResourceEntity" }, { name: "StaffTimePhasedDataOfUserDaily", relatedTypeName: "ResourceEntity" }, { name: "StaffTimePhasedDataOfUserMonthly", relatedTypeName: "ResourceEntity" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Targets", relatedTypeName: "Target" }, { name: "Objectives", relatedTypeName: "Objective" }, { name: "Contributions", relatedTypeName: "Contribution" }, { name: "UserTeamMembers", relatedTypeName: "User" }, { name: "AllUserResources", relatedTypeName: "User" }, { name: "UserResources", relatedTypeName: "GenericUser" }, { name: "AllUserTeamMembers", relatedTypeName: "User" }] as const, + RecurringTask: [{ name: "Groups", relatedTypeName: "Group" }, { name: "AllImpacting", relatedTypeName: "GenericTask" }, { name: "Children", relatedTypeName: "GenericTask" }, { name: "Shortcuts", relatedTypeName: "GenericTask" }, { name: "Impacting", relatedTypeName: "GenericTask" }, { name: "AllImpacted", relatedTypeName: "WorkItem" }, { name: "WhereUsedAsShortcut", relatedTypeName: "WorkItem" }, { name: "ImpactedBy", relatedTypeName: "WorkItem" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "RelatedExpenses", relatedTypeName: "Expense" }, { name: "Followers", relatedTypeName: "User" }, { name: "ProjectCustomers", relatedTypeName: "Customer" }, { name: "TeamMembersAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "AttachedPosts", relatedTypeName: "Post" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "RelatedTimesheetEntries", relatedTypeName: "Timesheet" }, { name: "Expenses", relatedTypeName: "Expense" }, { name: "OriginatedIssues", relatedTypeName: "Case" }, { name: "Issues", relatedTypeName: "Case" }, { name: "ResourcesAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "Reviewers", relatedTypeName: "User" }, { name: "Managers", relatedTypeName: "User" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "AllTeamMembersAndPlaceholders", relatedTypeName: "User" }, { name: "AllManagers", relatedTypeName: "User" }, { name: "AllReviewers", relatedTypeName: "User" }, { name: "AllResourcesAndPlaceholders", relatedTypeName: "User" }, { name: "Successors", relatedTypeName: "WorkItem" }, { name: "Predecessors", relatedTypeName: "WorkItem" }, { name: "AllTeam", relatedTypeName: "ResourceEntity" }, { name: "Documents", relatedTypeName: "Document" }, { name: "UsersOpenedStopwatches", relatedTypeName: "User" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "AllWorkItemsWithShortcuts", relatedTypeName: "WorkItem" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "CustomizationProfilingData", relatedTypeName: "CustomizationProfilingData" }, { name: "AdditionalObjectProperties", relatedTypeName: "AdditionalObjectProperties" }, { name: "RelatedIssues", relatedTypeName: "Issue" }, { name: "RelatedRisks", relatedTypeName: "Risk" }, { name: "RelatedBugs", relatedTypeName: "Bug" }, { name: "RelatedRequests", relatedTypeName: "EnhancementRequest" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "LoadOfUserMonthly", relatedTypeName: "ResourceEntity" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "SnapshotVersionData", relatedTypeName: "WorkItemVersion" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "LoadOfUser", relatedTypeName: "ResourceEntity" }, { name: "StaffTimePhasedDataOfUserDaily", relatedTypeName: "ResourceEntity" }, { name: "StaffTimePhasedDataOfUserMonthly", relatedTypeName: "ResourceEntity" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Targets", relatedTypeName: "Target" }, { name: "Objectives", relatedTypeName: "Objective" }, { name: "Contributions", relatedTypeName: "Contribution" }, { name: "UserTeamMembers", relatedTypeName: "User" }, { name: "AllUserResources", relatedTypeName: "User" }, { name: "UserResources", relatedTypeName: "GenericUser" }, { name: "AllUserTeamMembers", relatedTypeName: "User" }] as const, + GenericTask: [{ name: "Groups", relatedTypeName: "Group" }, { name: "AllImpacting", relatedTypeName: "GenericTask" }, { name: "Children", relatedTypeName: "GenericTask" }, { name: "Shortcuts", relatedTypeName: "GenericTask" }, { name: "Impacting", relatedTypeName: "GenericTask" }, { name: "AllImpacted", relatedTypeName: "WorkItem" }, { name: "WhereUsedAsShortcut", relatedTypeName: "WorkItem" }, { name: "ImpactedBy", relatedTypeName: "WorkItem" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "RelatedExpenses", relatedTypeName: "Expense" }, { name: "Followers", relatedTypeName: "User" }, { name: "ProjectCustomers", relatedTypeName: "Customer" }, { name: "TeamMembersAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "AttachedPosts", relatedTypeName: "Post" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "RelatedTimesheetEntries", relatedTypeName: "Timesheet" }, { name: "Expenses", relatedTypeName: "Expense" }, { name: "OriginatedIssues", relatedTypeName: "Case" }, { name: "Issues", relatedTypeName: "Case" }, { name: "ResourcesAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "Reviewers", relatedTypeName: "User" }, { name: "Managers", relatedTypeName: "User" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "AllTeamMembersAndPlaceholders", relatedTypeName: "User" }, { name: "AllManagers", relatedTypeName: "User" }, { name: "AllReviewers", relatedTypeName: "User" }, { name: "AllResourcesAndPlaceholders", relatedTypeName: "User" }, { name: "Successors", relatedTypeName: "WorkItem" }, { name: "Predecessors", relatedTypeName: "WorkItem" }, { name: "AllTeam", relatedTypeName: "ResourceEntity" }, { name: "Documents", relatedTypeName: "Document" }, { name: "UsersOpenedStopwatches", relatedTypeName: "User" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "AllWorkItemsWithShortcuts", relatedTypeName: "WorkItem" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "CustomizationProfilingData", relatedTypeName: "CustomizationProfilingData" }, { name: "AdditionalObjectProperties", relatedTypeName: "AdditionalObjectProperties" }, { name: "RelatedIssues", relatedTypeName: "Issue" }, { name: "RelatedRisks", relatedTypeName: "Risk" }, { name: "RelatedBugs", relatedTypeName: "Bug" }, { name: "RelatedRequests", relatedTypeName: "EnhancementRequest" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "LoadOfUserMonthly", relatedTypeName: "ResourceEntity" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "SnapshotVersionData", relatedTypeName: "WorkItemVersion" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "LoadOfUser", relatedTypeName: "ResourceEntity" }, { name: "StaffTimePhasedDataOfUserDaily", relatedTypeName: "ResourceEntity" }, { name: "StaffTimePhasedDataOfUserMonthly", relatedTypeName: "ResourceEntity" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Targets", relatedTypeName: "Target" }, { name: "Objectives", relatedTypeName: "Objective" }, { name: "Contributions", relatedTypeName: "Contribution" }, { name: "UserTeamMembers", relatedTypeName: "User" }, { name: "AllUserResources", relatedTypeName: "User" }, { name: "UserResources", relatedTypeName: "GenericUser" }, { name: "AllUserTeamMembers", relatedTypeName: "User" }, { name: "DirectLaborResources", relatedTypeName: "ResourceEntity" }, { name: "DirectNonLaborResources", relatedTypeName: "NonLaborResource" }, { name: "DirectFixedPriceResources", relatedTypeName: "FixedPriceResource" }, { name: "FinancialResources", relatedTypeName: "GenericResourceEntity" }, { name: "DirectAssetResources", relatedTypeName: "GenericAsset" }] as const, + PlanningComponent: [{ name: "AllImpacted", relatedTypeName: "WorkItem" }, { name: "WhereUsedAsShortcut", relatedTypeName: "WorkItem" }, { name: "ImpactedBy", relatedTypeName: "WorkItem" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "RelatedExpenses", relatedTypeName: "Expense" }, { name: "Followers", relatedTypeName: "User" }, { name: "ProjectCustomers", relatedTypeName: "Customer" }, { name: "TeamMembersAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "AttachedPosts", relatedTypeName: "Post" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "RelatedTimesheetEntries", relatedTypeName: "Timesheet" }, { name: "Expenses", relatedTypeName: "Expense" }, { name: "OriginatedIssues", relatedTypeName: "Case" }, { name: "Issues", relatedTypeName: "Case" }, { name: "ResourcesAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "Reviewers", relatedTypeName: "User" }, { name: "Managers", relatedTypeName: "User" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "AllTeamMembersAndPlaceholders", relatedTypeName: "User" }, { name: "AllManagers", relatedTypeName: "User" }, { name: "AllReviewers", relatedTypeName: "User" }, { name: "AllResourcesAndPlaceholders", relatedTypeName: "User" }, { name: "Successors", relatedTypeName: "WorkItem" }, { name: "Predecessors", relatedTypeName: "WorkItem" }, { name: "AllTeam", relatedTypeName: "ResourceEntity" }, { name: "Documents", relatedTypeName: "Document" }, { name: "UsersOpenedStopwatches", relatedTypeName: "User" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "AllWorkItemsWithShortcuts", relatedTypeName: "WorkItem" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "CustomizationProfilingData", relatedTypeName: "CustomizationProfilingData" }, { name: "AdditionalObjectProperties", relatedTypeName: "AdditionalObjectProperties" }, { name: "RelatedIssues", relatedTypeName: "Issue" }, { name: "RelatedRisks", relatedTypeName: "Risk" }, { name: "RelatedBugs", relatedTypeName: "Bug" }, { name: "RelatedRequests", relatedTypeName: "EnhancementRequest" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "LoadOfUserMonthly", relatedTypeName: "ResourceEntity" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "SnapshotVersionData", relatedTypeName: "WorkItemVersion" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "LoadOfUser", relatedTypeName: "ResourceEntity" }, { name: "StaffTimePhasedDataOfUserDaily", relatedTypeName: "ResourceEntity" }, { name: "StaffTimePhasedDataOfUserMonthly", relatedTypeName: "ResourceEntity" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Targets", relatedTypeName: "Target" }, { name: "Objectives", relatedTypeName: "Objective" }, { name: "Contributions", relatedTypeName: "Contribution" }, { name: "UserTeamMembers", relatedTypeName: "User" }, { name: "AllUserResources", relatedTypeName: "User" }, { name: "UserResources", relatedTypeName: "GenericUser" }, { name: "AllUserTeamMembers", relatedTypeName: "User" }, { name: "AllImpacting", relatedTypeName: "PlanningComponent" }, { name: "Tasks", relatedTypeName: "GenericTask" }, { name: "Children", relatedTypeName: "GenericTask" }, { name: "Shortcuts", relatedTypeName: "PlanningComponent" }, { name: "Impacting", relatedTypeName: "PlanningComponent" }, { name: "AggregatedAssetResources", relatedTypeName: "GenericAsset" }, { name: "AggregatedLaborResources", relatedTypeName: "ResourceEntity" }, { name: "DirectFixedPriceResources", relatedTypeName: "FixedPriceResource" }, { name: "AggregatedFixedPriceResources", relatedTypeName: "FixedPriceResource" }, { name: "FinancialResources", relatedTypeName: "GenericResourceEntity" }, { name: "DirectNonLaborResources", relatedTypeName: "NonLaborResource" }, { name: "AggregatedNonLaborResources", relatedTypeName: "NonLaborResource" }, { name: "Groups", relatedTypeName: "Group" }, { name: "DirectLaborResources", relatedTypeName: "ResourceEntity" }, { name: "DirectAssetResources", relatedTypeName: "GenericAsset" }] as const, + Project: [{ name: "AllImpacting", relatedTypeName: "WorkItem" }, { name: "AllImpacted", relatedTypeName: "GenericProject" }, { name: "AllTeam", relatedTypeName: "ResourceEntity" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "ExpenseSheets", relatedTypeName: "ExpenseSheet" }, { name: "Children", relatedTypeName: "WorkItem" }, { name: "Shortcuts", relatedTypeName: "WorkItem" }, { name: "Impacting", relatedTypeName: "WorkItem" }, { name: "ImpactedBy", relatedTypeName: "GenericProject" }, { name: "AllRisks", relatedTypeName: "Risk" }, { name: "AllIssues", relatedTypeName: "Issue" }, { name: "AllRequests", relatedTypeName: "EnhancementRequest" }, { name: "AllBugs", relatedTypeName: "Bug" }, { name: "AllCases", relatedTypeName: "Case" }, { name: "Timesheets", relatedTypeName: "Timesheet" }, { name: "DirectLaborResources", relatedTypeName: "ResourceEntity" }, { name: "WhereUsedAsShortcut", relatedTypeName: "Project" }, { name: "Versions", relatedTypeName: "Versions" }, { name: "AllFiles", relatedTypeName: "Document" }, { name: "FinancialResources", relatedTypeName: "GenericResourceEntity" }, { name: "Portfolios", relatedTypeName: "Portfolio" }, { name: "DirectAssetResources", relatedTypeName: "GenericAsset" }, { name: "AggregatedLaborResources", relatedTypeName: "ResourceEntity" }, { name: "AllWorkItems", relatedTypeName: "WorkItem" }, { name: "WorkItems", relatedTypeName: "PlanningComponent" }, { name: "TargetedIssues", relatedTypeName: "Case" }, { name: "JobTitles", relatedTypeName: "JobTitle" }, { name: "Groups", relatedTypeName: "Group" }, { name: "DirectNonLaborResources", relatedTypeName: "NonLaborResource" }, { name: "AggregatedNonLaborResources", relatedTypeName: "NonLaborResource" }, { name: "DirectFixedPriceResources", relatedTypeName: "FixedPriceResource" }, { name: "AggregatedFixedPriceResources", relatedTypeName: "FixedPriceResource" }, { name: "RequestedResourceEntities", relatedTypeName: "ResourceEntity" }, { name: "AggregatedAssetResources", relatedTypeName: "GenericAsset" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "RelatedExpenses", relatedTypeName: "Expense" }, { name: "Followers", relatedTypeName: "User" }, { name: "ProjectCustomers", relatedTypeName: "Customer" }, { name: "TeamMembersAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "AttachedPosts", relatedTypeName: "Post" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "RelatedTimesheetEntries", relatedTypeName: "Timesheet" }, { name: "Expenses", relatedTypeName: "Expense" }, { name: "OriginatedIssues", relatedTypeName: "Case" }, { name: "Issues", relatedTypeName: "Case" }, { name: "ResourcesAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "Reviewers", relatedTypeName: "User" }, { name: "Managers", relatedTypeName: "User" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "AllTeamMembersAndPlaceholders", relatedTypeName: "User" }, { name: "AllManagers", relatedTypeName: "User" }, { name: "AllReviewers", relatedTypeName: "User" }, { name: "AllResourcesAndPlaceholders", relatedTypeName: "User" }, { name: "Successors", relatedTypeName: "WorkItem" }, { name: "Predecessors", relatedTypeName: "WorkItem" }, { name: "Documents", relatedTypeName: "Document" }, { name: "UsersOpenedStopwatches", relatedTypeName: "User" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "AllWorkItemsWithShortcuts", relatedTypeName: "WorkItem" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "CustomizationProfilingData", relatedTypeName: "CustomizationProfilingData" }, { name: "AdditionalObjectProperties", relatedTypeName: "AdditionalObjectProperties" }, { name: "RelatedIssues", relatedTypeName: "Issue" }, { name: "RelatedRisks", relatedTypeName: "Risk" }, { name: "RelatedBugs", relatedTypeName: "Bug" }, { name: "RelatedRequests", relatedTypeName: "EnhancementRequest" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "LoadOfUserMonthly", relatedTypeName: "ResourceEntity" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "SnapshotVersionData", relatedTypeName: "WorkItemVersion" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "LoadOfUser", relatedTypeName: "ResourceEntity" }, { name: "StaffTimePhasedDataOfUserDaily", relatedTypeName: "ResourceEntity" }, { name: "StaffTimePhasedDataOfUserMonthly", relatedTypeName: "ResourceEntity" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Targets", relatedTypeName: "Target" }, { name: "Objectives", relatedTypeName: "Objective" }, { name: "Contributions", relatedTypeName: "Contribution" }, { name: "UserTeamMembers", relatedTypeName: "User" }, { name: "AllUserResources", relatedTypeName: "User" }, { name: "UserResources", relatedTypeName: "GenericUser" }, { name: "AllUserTeamMembers", relatedTypeName: "User" }] as const, + Program: [{ name: "AllImpacting", relatedTypeName: "Project" }, { name: "Children", relatedTypeName: "Project" }, { name: "Impacting", relatedTypeName: "Project" }, { name: "AllCases", relatedTypeName: "Case" }, { name: "AllRisks", relatedTypeName: "Risk" }, { name: "AllIssues", relatedTypeName: "Issue" }, { name: "AllRequests", relatedTypeName: "EnhancementRequest" }, { name: "AllBugs", relatedTypeName: "Bug" }, { name: "AllFiles", relatedTypeName: "Document" }, { name: "Portfolios", relatedTypeName: "Portfolio" }, { name: "AggregatedLaborResources", relatedTypeName: "ResourceEntity" }, { name: "AllWorkItems", relatedTypeName: "WorkItem" }, { name: "WorkItems", relatedTypeName: "PlanningComponent" }, { name: "TargetedIssues", relatedTypeName: "Case" }, { name: "JobTitles", relatedTypeName: "JobTitle" }, { name: "Groups", relatedTypeName: "Group" }, { name: "DirectNonLaborResources", relatedTypeName: "NonLaborResource" }, { name: "AggregatedNonLaborResources", relatedTypeName: "NonLaborResource" }, { name: "DirectFixedPriceResources", relatedTypeName: "FixedPriceResource" }, { name: "AggregatedFixedPriceResources", relatedTypeName: "FixedPriceResource" }, { name: "RequestedResourceEntities", relatedTypeName: "ResourceEntity" }, { name: "AggregatedAssetResources", relatedTypeName: "GenericAsset" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "RelatedExpenses", relatedTypeName: "Expense" }, { name: "Followers", relatedTypeName: "User" }, { name: "ProjectCustomers", relatedTypeName: "Customer" }, { name: "TeamMembersAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "AttachedPosts", relatedTypeName: "Post" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "RelatedTimesheetEntries", relatedTypeName: "Timesheet" }, { name: "Expenses", relatedTypeName: "Expense" }, { name: "OriginatedIssues", relatedTypeName: "Case" }, { name: "Issues", relatedTypeName: "Case" }, { name: "ResourcesAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "Reviewers", relatedTypeName: "User" }, { name: "Managers", relatedTypeName: "User" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "AllTeamMembersAndPlaceholders", relatedTypeName: "User" }, { name: "AllManagers", relatedTypeName: "User" }, { name: "AllReviewers", relatedTypeName: "User" }, { name: "AllResourcesAndPlaceholders", relatedTypeName: "User" }, { name: "Successors", relatedTypeName: "WorkItem" }, { name: "Predecessors", relatedTypeName: "WorkItem" }, { name: "AllTeam", relatedTypeName: "ResourceEntity" }, { name: "Documents", relatedTypeName: "Document" }, { name: "UsersOpenedStopwatches", relatedTypeName: "User" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "AllWorkItemsWithShortcuts", relatedTypeName: "WorkItem" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "CustomizationProfilingData", relatedTypeName: "CustomizationProfilingData" }, { name: "AdditionalObjectProperties", relatedTypeName: "AdditionalObjectProperties" }, { name: "RelatedIssues", relatedTypeName: "Issue" }, { name: "RelatedRisks", relatedTypeName: "Risk" }, { name: "RelatedBugs", relatedTypeName: "Bug" }, { name: "RelatedRequests", relatedTypeName: "EnhancementRequest" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "LoadOfUserMonthly", relatedTypeName: "ResourceEntity" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "SnapshotVersionData", relatedTypeName: "WorkItemVersion" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "LoadOfUser", relatedTypeName: "ResourceEntity" }, { name: "StaffTimePhasedDataOfUserDaily", relatedTypeName: "ResourceEntity" }, { name: "StaffTimePhasedDataOfUserMonthly", relatedTypeName: "ResourceEntity" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Targets", relatedTypeName: "Target" }, { name: "Objectives", relatedTypeName: "Objective" }, { name: "Contributions", relatedTypeName: "Contribution" }, { name: "UserTeamMembers", relatedTypeName: "User" }, { name: "AllUserResources", relatedTypeName: "User" }, { name: "UserResources", relatedTypeName: "GenericUser" }, { name: "AllUserTeamMembers", relatedTypeName: "User" }] as const, + GenericProject: [{ name: "AggregatedLaborResources", relatedTypeName: "ResourceEntity" }, { name: "AllWorkItems", relatedTypeName: "WorkItem" }, { name: "WorkItems", relatedTypeName: "PlanningComponent" }, { name: "TargetedIssues", relatedTypeName: "Case" }, { name: "JobTitles", relatedTypeName: "JobTitle" }, { name: "Groups", relatedTypeName: "Group" }, { name: "DirectNonLaborResources", relatedTypeName: "NonLaborResource" }, { name: "AggregatedNonLaborResources", relatedTypeName: "NonLaborResource" }, { name: "DirectFixedPriceResources", relatedTypeName: "FixedPriceResource" }, { name: "AggregatedFixedPriceResources", relatedTypeName: "FixedPriceResource" }, { name: "RequestedResourceEntities", relatedTypeName: "ResourceEntity" }, { name: "AggregatedAssetResources", relatedTypeName: "GenericAsset" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "RelatedExpenses", relatedTypeName: "Expense" }, { name: "Followers", relatedTypeName: "User" }, { name: "ProjectCustomers", relatedTypeName: "Customer" }, { name: "TeamMembersAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "AttachedPosts", relatedTypeName: "Post" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "RelatedTimesheetEntries", relatedTypeName: "Timesheet" }, { name: "Expenses", relatedTypeName: "Expense" }, { name: "OriginatedIssues", relatedTypeName: "Case" }, { name: "Issues", relatedTypeName: "Case" }, { name: "ResourcesAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "Reviewers", relatedTypeName: "User" }, { name: "Managers", relatedTypeName: "User" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "AllTeamMembersAndPlaceholders", relatedTypeName: "User" }, { name: "AllManagers", relatedTypeName: "User" }, { name: "AllReviewers", relatedTypeName: "User" }, { name: "AllResourcesAndPlaceholders", relatedTypeName: "User" }, { name: "Successors", relatedTypeName: "WorkItem" }, { name: "Predecessors", relatedTypeName: "WorkItem" }, { name: "AllTeam", relatedTypeName: "ResourceEntity" }, { name: "Documents", relatedTypeName: "Document" }, { name: "UsersOpenedStopwatches", relatedTypeName: "User" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "AllWorkItemsWithShortcuts", relatedTypeName: "WorkItem" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "CustomizationProfilingData", relatedTypeName: "CustomizationProfilingData" }, { name: "AdditionalObjectProperties", relatedTypeName: "AdditionalObjectProperties" }, { name: "RelatedIssues", relatedTypeName: "Issue" }, { name: "RelatedRisks", relatedTypeName: "Risk" }, { name: "RelatedBugs", relatedTypeName: "Bug" }, { name: "RelatedRequests", relatedTypeName: "EnhancementRequest" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "LoadOfUserMonthly", relatedTypeName: "ResourceEntity" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "SnapshotVersionData", relatedTypeName: "WorkItemVersion" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "LoadOfUser", relatedTypeName: "ResourceEntity" }, { name: "StaffTimePhasedDataOfUserDaily", relatedTypeName: "ResourceEntity" }, { name: "StaffTimePhasedDataOfUserMonthly", relatedTypeName: "ResourceEntity" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Targets", relatedTypeName: "Target" }, { name: "Objectives", relatedTypeName: "Objective" }, { name: "Contributions", relatedTypeName: "Contribution" }, { name: "UserTeamMembers", relatedTypeName: "User" }, { name: "AllUserResources", relatedTypeName: "User" }, { name: "UserResources", relatedTypeName: "GenericUser" }, { name: "AllUserTeamMembers", relatedTypeName: "User" }, { name: "AllImpacting", relatedTypeName: "WorkItem" }, { name: "AllImpacted", relatedTypeName: "GenericProject" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "ExpenseSheets", relatedTypeName: "ExpenseSheet" }, { name: "Children", relatedTypeName: "WorkItem" }, { name: "Shortcuts", relatedTypeName: "WorkItem" }, { name: "Impacting", relatedTypeName: "WorkItem" }, { name: "ImpactedBy", relatedTypeName: "GenericProject" }, { name: "AllRisks", relatedTypeName: "Risk" }, { name: "AllIssues", relatedTypeName: "Issue" }, { name: "AllRequests", relatedTypeName: "EnhancementRequest" }, { name: "AllBugs", relatedTypeName: "Bug" }, { name: "AllCases", relatedTypeName: "Case" }, { name: "Timesheets", relatedTypeName: "Timesheet" }, { name: "DirectLaborResources", relatedTypeName: "ResourceEntity" }, { name: "WhereUsedAsShortcut", relatedTypeName: "Project" }, { name: "Versions", relatedTypeName: "Versions" }, { name: "AllFiles", relatedTypeName: "Document" }, { name: "FinancialResources", relatedTypeName: "GenericResourceEntity" }, { name: "Portfolios", relatedTypeName: "Portfolio" }, { name: "DirectAssetResources", relatedTypeName: "GenericAsset" }] as const, + WorkItem: [{ name: "DirectFollowers", relatedTypeName: "User" }, { name: "RelatedExpenses", relatedTypeName: "Expense" }, { name: "Followers", relatedTypeName: "User" }, { name: "ProjectCustomers", relatedTypeName: "Customer" }, { name: "TeamMembersAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "AttachedPosts", relatedTypeName: "Post" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "RelatedTimesheetEntries", relatedTypeName: "Timesheet" }, { name: "Expenses", relatedTypeName: "Expense" }, { name: "OriginatedIssues", relatedTypeName: "Case" }, { name: "Issues", relatedTypeName: "Case" }, { name: "ResourcesAndPlaceholders", relatedTypeName: "ResourceEntity" }, { name: "Reviewers", relatedTypeName: "User" }, { name: "Managers", relatedTypeName: "User" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "AllTeamMembersAndPlaceholders", relatedTypeName: "User" }, { name: "AllManagers", relatedTypeName: "User" }, { name: "AllReviewers", relatedTypeName: "User" }, { name: "AllResourcesAndPlaceholders", relatedTypeName: "User" }, { name: "Successors", relatedTypeName: "WorkItem" }, { name: "Predecessors", relatedTypeName: "WorkItem" }, { name: "AllTeam", relatedTypeName: "ResourceEntity" }, { name: "Documents", relatedTypeName: "Document" }, { name: "UsersOpenedStopwatches", relatedTypeName: "User" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "Groups", relatedTypeName: "Group" }, { name: "AllWorkItemsWithShortcuts", relatedTypeName: "WorkItem" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "CustomizationProfilingData", relatedTypeName: "CustomizationProfilingData" }, { name: "AdditionalObjectProperties", relatedTypeName: "AdditionalObjectProperties" }, { name: "RelatedIssues", relatedTypeName: "Issue" }, { name: "RelatedRisks", relatedTypeName: "Risk" }, { name: "RelatedBugs", relatedTypeName: "Bug" }, { name: "RelatedRequests", relatedTypeName: "EnhancementRequest" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "LoadOfUserMonthly", relatedTypeName: "ResourceEntity" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "SnapshotVersionData", relatedTypeName: "WorkItemVersion" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "LoadOfUser", relatedTypeName: "ResourceEntity" }, { name: "StaffTimePhasedDataOfUserDaily", relatedTypeName: "ResourceEntity" }, { name: "StaffTimePhasedDataOfUserMonthly", relatedTypeName: "ResourceEntity" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Targets", relatedTypeName: "Target" }, { name: "Objectives", relatedTypeName: "Objective" }, { name: "Contributions", relatedTypeName: "Contribution" }, { name: "UserTeamMembers", relatedTypeName: "User" }, { name: "AllUserResources", relatedTypeName: "User" }, { name: "UserResources", relatedTypeName: "GenericUser" }, { name: "AllUserTeamMembers", relatedTypeName: "User" }, { name: "AllImpacted", relatedTypeName: "WorkItem" }, { name: "WhereUsedAsShortcut", relatedTypeName: "WorkItem" }, { name: "ImpactedBy", relatedTypeName: "WorkItem" }, { name: "AllImpacting", relatedTypeName: "WorkItem" }, { name: "Tasks", relatedTypeName: "GenericTask" }, { name: "Children", relatedTypeName: "WorkItem" }, { name: "Shortcuts", relatedTypeName: "WorkItem" }, { name: "Impacting", relatedTypeName: "WorkItem" }, { name: "AggregatedAssetResources", relatedTypeName: "GenericAsset" }, { name: "AggregatedLaborResources", relatedTypeName: "ResourceEntity" }, { name: "DirectFixedPriceResources", relatedTypeName: "FixedPriceResource" }, { name: "AggregatedFixedPriceResources", relatedTypeName: "FixedPriceResource" }, { name: "FinancialResources", relatedTypeName: "GenericResourceEntity" }, { name: "DirectNonLaborResources", relatedTypeName: "NonLaborResource" }, { name: "AggregatedNonLaborResources", relatedTypeName: "NonLaborResource" }, { name: "DirectLaborResources", relatedTypeName: "ResourceEntity" }, { name: "DirectAssetResources", relatedTypeName: "GenericAsset" }, { name: "AllWorkItems", relatedTypeName: "WorkItem" }, { name: "WorkItems", relatedTypeName: "PlanningComponent" }, { name: "TargetedIssues", relatedTypeName: "Case" }, { name: "JobTitles", relatedTypeName: "JobTitle" }, { name: "RequestedResourceEntities", relatedTypeName: "ResourceEntity" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "ExpenseSheets", relatedTypeName: "ExpenseSheet" }, { name: "AllRisks", relatedTypeName: "Risk" }, { name: "AllIssues", relatedTypeName: "Issue" }, { name: "AllRequests", relatedTypeName: "EnhancementRequest" }, { name: "AllBugs", relatedTypeName: "Bug" }, { name: "AllCases", relatedTypeName: "Case" }, { name: "Timesheets", relatedTypeName: "Timesheet" }, { name: "Versions", relatedTypeName: "Versions" }, { name: "AllFiles", relatedTypeName: "Document" }, { name: "Portfolios", relatedTypeName: "Portfolio" }] as const, + Topic: [{ name: "DirectFollowers", relatedTypeName: "User" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "WorkItems", relatedTypeName: "WorkItem" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "Cases", relatedTypeName: "Case" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "ExpenseSheets", relatedTypeName: "ExpenseSheet" }, { name: "ExpenseEntries", relatedTypeName: "Expense" }, { name: "Groups", relatedTypeName: "Group" }, { name: "Documents", relatedTypeName: "Document" }, { name: "DataObjects", relatedTypeName: "Data" }] as const, + Following: [] as const, + Like: [] as const, + ContractPurchaseOrderDiscussionLink: [] as const, + ContractDiscussionLink: [] as const, + DecisionDiscussionLink: [] as const, + ActionItemDiscussionLink: [] as const, + ContributionDiscussionLink: [] as const, + ObjectiveDiscussionLink: [] as const, + TargetDiscussionLink: [] as const, + PortfolioDiscussionLink: [] as const, + NLRDiscussionLink: [] as const, + ReportDiscussionLink: [] as const, + UserReportDiscussionLink: [] as const, + SystemReportDiscussionLink: [] as const, + ExpenseEntryDiscussionLink: [] as const, + ExpenseSheetDiscussionLink: [] as const, + CustomerDiscussionLink: [] as const, + CaseDiscussionLink: [] as const, + WorkItemDiscussionLink: [] as const, + DiscussionReply: [{ name: "Documents", relatedTypeName: "Document" }, { name: "Lines", relatedTypeName: "String" }, { name: "WorkItems", relatedTypeName: "WorkItem" }, { name: "Cases", relatedTypeName: "Case" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "ExpenseSheets", relatedTypeName: "ExpenseSheet" }, { name: "ExpenseEntries", relatedTypeName: "Expense" }, { name: "Reports", relatedTypeName: "FoldersAndReports" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "Contracts", relatedTypeName: "Contract" }, { name: "ContractPurchaseOrders", relatedTypeName: "ContractPurchaseOrder" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "NonLaborResource", relatedTypeName: "NonLaborResource" }, { name: "Portfolios", relatedTypeName: "Portfolio" }, { name: "Targets", relatedTypeName: "Target" }, { name: "Objectives", relatedTypeName: "Objective" }, { name: "Contributions", relatedTypeName: "Contribution" }] as const, + DiscussionPost: [{ name: "Replies", relatedTypeName: "DiscussionReply" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "Documents", relatedTypeName: "Document" }, { name: "Lines", relatedTypeName: "String" }, { name: "WorkItems", relatedTypeName: "WorkItem" }, { name: "Cases", relatedTypeName: "Case" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "ExpenseSheets", relatedTypeName: "ExpenseSheet" }, { name: "ExpenseEntries", relatedTypeName: "Expense" }, { name: "Reports", relatedTypeName: "FoldersAndReports" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "Contracts", relatedTypeName: "Contract" }, { name: "ContractPurchaseOrders", relatedTypeName: "ContractPurchaseOrder" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "NonLaborResource", relatedTypeName: "NonLaborResource" }, { name: "Portfolios", relatedTypeName: "Portfolio" }, { name: "Targets", relatedTypeName: "Target" }, { name: "Objectives", relatedTypeName: "Objective" }, { name: "Contributions", relatedTypeName: "Contribution" }] as const, + DiscussionMessage: [{ name: "Documents", relatedTypeName: "Document" }, { name: "Lines", relatedTypeName: "String" }, { name: "WorkItems", relatedTypeName: "WorkItem" }, { name: "Cases", relatedTypeName: "Case" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "ExpenseSheets", relatedTypeName: "ExpenseSheet" }, { name: "ExpenseEntries", relatedTypeName: "Expense" }, { name: "Reports", relatedTypeName: "FoldersAndReports" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "Contracts", relatedTypeName: "Contract" }, { name: "ContractPurchaseOrders", relatedTypeName: "ContractPurchaseOrder" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "NonLaborResource", relatedTypeName: "NonLaborResource" }, { name: "Portfolios", relatedTypeName: "Portfolio" }, { name: "Targets", relatedTypeName: "Target" }, { name: "Objectives", relatedTypeName: "Objective" }, { name: "Contributions", relatedTypeName: "Contribution" }, { name: "Replies", relatedTypeName: "DiscussionReply" }, { name: "Topics", relatedTypeName: "Topic" }] as const, + GroupTaskLink: [] as const, + GroupProjectLink: [] as const, + GroupCaseLink: [] as const, + GroupCustomerLink: [] as const, + GroupLink: [] as const, + RecycleBinItems: [] as const, + Stopwatch: [] as const, + ResourceManagerLink: [] as const, + ProfileLink: [] as const, + SubGroupHierarchyLink: [] as const, + GroupMembershipLink: [{ name: "PrimaryFlagHistory", relatedTypeName: "PrimaryFlagHistory" }] as const, + GroupHierarchyLink: [{ name: "PrimaryFlagHistory", relatedTypeName: "PrimaryFlagHistory" }] as const, + SkillLink: [] as const, + MembershipLink: [{ name: "PrimaryFlagHistory", relatedTypeName: "PrimaryFlagHistory" }] as const, + ContractPurchaseOrderAttachmentLink: [] as const, + ContractAttachmentLink: [] as const, + AssetAttachmentLink: [] as const, + BusinessUnitAttachmentLink: [] as const, + ContributionAttachmentLink: [] as const, + ObjectiveAttachmentLink: [] as const, + TargetAttachmentLink: [] as const, + DecisionAttachmentLink: [] as const, + ActionItemAttachmentLink: [] as const, + MeetingNoteAttachmentLink: [] as const, + PortfolioAttachmentLink: [] as const, + NLRAttachmentLink: [] as const, + WorkItemAttachmentLink: [] as const, + DashboardAttachmentLink: [] as const, + ReportAttachmentLink: [] as const, + UserAttachmentLink: [] as const, + ExpenseSheetAttachmentLink: [] as const, + CustomerAttachmentLink: [] as const, + DiscussionMessageAttachmentLink: [] as const, + ResourceGroupEntityAttachmentLink: [] as const, + IssueAttachmentLink: [] as const, + ExpenseEntryAttachmentLink: [] as const, + AdditionalManagerLink: [{ name: "AssignedRates", relatedTypeName: "Rate" }] as const, + OwnerLink: [{ name: "AssignedRates", relatedTypeName: "Rate" }] as const, + ManagerResourceLink: [{ name: "AssignedRates", relatedTypeName: "Rate" }] as const, + RegularResourceLink: [{ name: "TimesheetsAssignedToResource", relatedTypeName: "Timesheet" }, { name: "AssignedRates", relatedTypeName: "Rate" }] as const, + ReviewerLink: [{ name: "AssignedRates", relatedTypeName: "Rate" }] as const, + WorkItemTeamLink: [{ name: "AssignedRates", relatedTypeName: "Rate" }, { name: "TimesheetsAssignedToResource", relatedTypeName: "Timesheet" }] as const, + JobTitleRateLink: [{ name: "AssignedRates", relatedTypeName: "Rate" }] as const, + ResourceLink: [{ name: "AssignedRates", relatedTypeName: "Rate" }, { name: "TimesheetsAssignedToResource", relatedTypeName: "Timesheet" }] as const, + ProgressImpactLink: [] as const, + RealWorkItemHierarchyLink: [] as const, + ShortcutLink: [] as const, + BaseWorkItemHierarchyLink: [] as const, + WorkItemHierarchyLink: [] as const, + BusinessRuleError: [] as const, + SchedulingType: [] as const, + UnitOfMeasure: [] as const, + CurrencyType: [] as const, + ScoreRank: [] as const, + ContractStatus: [] as const, + ContractState: [] as const, + ContractSize: [] as const, + ContractType: [] as const, + PhasingState: [] as const, + SentimentStatus: [] as const, + RestrictedBusinessUnitSource: [] as const, + RestrictedFieldsSet: [] as const, + ExpectedTimesheets: [] as const, + UpdateForecastDefault: [] as const, + NLRExchangeRateDateOption: [] as const, + PermissionInheritanceForExternalUsers: [] as const, + TargetUnitScale: [] as const, + TargetCurrencyType: [] as const, + TargetUnitType: [] as const, + TargetStatus: [] as const, + TargetType: [] as const, + TargetState: [] as const, + DecisionState: [] as const, + MeetingAttendeeState: [] as const, + ActionItemState: [] as const, + MeetingNoteState: [] as const, + LoginType: [] as const, + PortfolioState: [] as const, + PortfolioType: [] as const, + ClarizenGoBoardType: [] as const, + ProjectBillingType: [] as const, + TimeApproval: [] as const, + NLRRescheduleMode: [] as const, + ClarizenGoStatus: [] as const, + ZiflowProofAlert: [] as const, + AuditAction: [] as const, + TrackStatus: [] as const, + CustomObjectIcons: [] as const, + TemplateCategory: [] as const, + GeoLocation: [] as const, + TemplateItemType: [] as const, + LaborBudgetPickup: [] as const, + ExpenseType: [] as const, + NonLaborResourceLinkCategory: [] as const, + ReportingPeriodPickup: [] as const, + GeographicalRegion: [] as const, + ResourceUtilizationCategory: [] as const, + InvestmentType: [] as const, + PackagedObjectCategory: [] as const, + NotifyUsers: [] as const, + EditorsMode: [] as const, + ManagerRole: [] as const, + DataObjectType: [] as const, + NumericFormat: [] as const, + Role: [] as const, + DashboardStatus: [] as const, + UserShortcut: [] as const, + IntegrationAuthenticationType: [] as const, + AuthorizationGroup: [] as const, + CustomIcon: [] as const, + ProofAlert: [] as const, + ProofRole: [] as const, + TriggeredBy: [] as const, + SyncStatus: [] as const, + ReplyMarkedType: [] as const, + CompanySize: [] as const, + CustomerSuccessStatus: [] as const, + Industry: [] as const, + Tier: [] as const, + AccountStatus: [] as const, + LicenseType: [] as const, + LandingPage: [] as const, + StorageType: [] as const, + ShortDateFormat: [] as const, + ConflictType: [] as const, + ProjectSize: [] as const, + PostState: [] as const, + PostType: [] as const, + DiscussionEmailNotifications: [] as const, + CompletenessRole: [] as const, + SpecialRole: [] as const, + FileType: [] as const, + WidgetType: [] as const, + CreatorType: [] as const, + StopwatchAggregateState: [] as const, + CommentType: [] as const, + StopwatchState: [] as const, + Region: [] as const, + Package: [] as const, + CaseBusinessImpact: [] as const, + State: [] as const, + TaskReportingPolicy: [] as const, + CaseState: [] as const, + ChargedType: [] as const, + RiskImpact: [] as const, + RisksRate: [] as const, + BusinessImpact: [] as const, + ExceptionType: [] as const, + ObjectAccessType: [] as const, + Months: [] as const, + WeekDays: [] as const, + RiskState: [] as const, + DependencyType: [] as const, + Pending: [] as const, + Severity: [] as const, + ExpenseCategory: [] as const, + WorkPolicy: [] as const, + RecipientType: [] as const, + RateType: [] as const, + ResourceRole: [] as const, + Importance: [] as const, + Language: [] as const, + RecurrenceType: [] as const, + CommitLevel: [] as const, + CountryState: [] as const, + ReportExtensionType: [] as const, + ProjectType: [] as const, + BudgetStatus: [] as const, + Countries: [] as const, + ImportedFrom: [] as const, + TimeZone: [] as const, + Widget: [] as const, + CaseCustomerLink: [] as const, + IssueTeamMembers: [] as const, + RelatedWork: [] as const, + EnhancementRequest: [{ name: "Contracts", relatedTypeName: "Contract" }, { name: "ContractPurchaseOrders", relatedTypeName: "ContractPurchaseOrder" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "Groups", relatedTypeName: "Group" }, { name: "Documents", relatedTypeName: "Document" }, { name: "AttachedPosts", relatedTypeName: "Post" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "AllTeamMembers", relatedTypeName: "User" }, { name: "WorkItems", relatedTypeName: "WorkItem" }, { name: "Team", relatedTypeName: "User" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "AdditionalObjectProperties", relatedTypeName: "AdditionalObjectProperties" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }] as const, + Bug: [{ name: "Contracts", relatedTypeName: "Contract" }, { name: "ContractPurchaseOrders", relatedTypeName: "ContractPurchaseOrder" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "Groups", relatedTypeName: "Group" }, { name: "Documents", relatedTypeName: "Document" }, { name: "AttachedPosts", relatedTypeName: "Post" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "AllTeamMembers", relatedTypeName: "User" }, { name: "WorkItems", relatedTypeName: "WorkItem" }, { name: "Team", relatedTypeName: "User" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "AdditionalObjectProperties", relatedTypeName: "AdditionalObjectProperties" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }] as const, + Risk: [{ name: "ContractPurchaseOrders", relatedTypeName: "ContractPurchaseOrder" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "Groups", relatedTypeName: "Group" }, { name: "Documents", relatedTypeName: "Document" }, { name: "AttachedPosts", relatedTypeName: "Post" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "AllTeamMembers", relatedTypeName: "User" }, { name: "WorkItems", relatedTypeName: "WorkItem" }, { name: "Team", relatedTypeName: "User" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "AdditionalObjectProperties", relatedTypeName: "AdditionalObjectProperties" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }] as const, + Issue: [{ name: "Contracts", relatedTypeName: "Contract" }, { name: "ContractPurchaseOrders", relatedTypeName: "ContractPurchaseOrder" }, { name: "DirectFollowers", relatedTypeName: "User" }, { name: "Groups", relatedTypeName: "Group" }, { name: "Documents", relatedTypeName: "Document" }, { name: "AttachedPosts", relatedTypeName: "Post" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "AllTeamMembers", relatedTypeName: "User" }, { name: "WorkItems", relatedTypeName: "WorkItem" }, { name: "Team", relatedTypeName: "User" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "AdditionalObjectProperties", relatedTypeName: "AdditionalObjectProperties" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }] as const, + Case: [{ name: "DirectFollowers", relatedTypeName: "User" }, { name: "Groups", relatedTypeName: "Group" }, { name: "Documents", relatedTypeName: "Document" }, { name: "AttachedPosts", relatedTypeName: "Post" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "Customers", relatedTypeName: "Customer" }, { name: "AllTeamMembers", relatedTypeName: "User" }, { name: "WorkItems", relatedTypeName: "WorkItem" }, { name: "Team", relatedTypeName: "User" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "AdditionalObjectProperties", relatedTypeName: "AdditionalObjectProperties" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Contracts", relatedTypeName: "Contract" }, { name: "ContractPurchaseOrders", relatedTypeName: "ContractPurchaseOrder" }] as const, + FavoriteLink: [] as const, + Expense: [{ name: "DirectFollowers", relatedTypeName: "User" }, { name: "Documents", relatedTypeName: "Document" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }] as const, + ExpenseSheet: [{ name: "DirectFollowers", relatedTypeName: "User" }, { name: "Documents", relatedTypeName: "Document" }, { name: "AttachedPosts", relatedTypeName: "Post" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "Expenses", relatedTypeName: "Expense" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "Decisions", relatedTypeName: "Decision" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }] as const, + CurrencyExchangeRate: [] as const, + EmailRecipient: [] as const, + CustomerLink: [] as const, + ContactPerson: [{ name: "RecipientOfEmails", relatedTypeName: "EmailRecipient" }] as const, + Customer: [{ name: "DirectFollowers", relatedTypeName: "User" }, { name: "AttachedEmails", relatedTypeName: "Email" }, { name: "AttachedNotes", relatedTypeName: "Note" }, { name: "Documents", relatedTypeName: "Document" }, { name: "Groups", relatedTypeName: "Group" }, { name: "Projects", relatedTypeName: "Project" }, { name: "Issues", relatedTypeName: "Case" }, { name: "LikedBy", relatedTypeName: "User" }, { name: "Followers", relatedTypeName: "User" }, { name: "Contacts", relatedTypeName: "ContactPerson" }, { name: "Discussions", relatedTypeName: "DiscussionPost" }, { name: "Topics", relatedTypeName: "Topic" }, { name: "Contracts", relatedTypeName: "Contract" }, { name: "ContractPurchaseOrders", relatedTypeName: "ContractPurchaseOrder" }, { name: "DataObjects", relatedTypeName: "Data" }, { name: "AdditionalObjectProperties", relatedTypeName: "AdditionalObjectProperties" }, { name: "ActionItems", relatedTypeName: "ActionItem" }, { name: "PermisionDefinitions", relatedTypeName: "ResourceEntity" }, { name: "RateCards", relatedTypeName: "RateCard" }, { name: "MeetingNotes", relatedTypeName: "MeetingNote" }, { name: "Decisions", relatedTypeName: "Decision" }] as const, + Rate: [] as const, + Timesheet: [] as const, + CalendarException: [] as const, + Organization: [{ name: "AllUsers", relatedTypeName: "User" }, { name: "ErrorNotifications", relatedTypeName: "ResourceEntity" }, { name: "AssignedRates", relatedTypeName: "Rate" }] as const, + TaskType: [] as const, + DocumentType: [] as const, + Phase: [] as const, + RequestType: [] as const, + MilestoneType: [] as const, + AttachmentLink: [] as const, + DiscussionLink: [] as const, + CustomLinkEntity: [] as const, +} as const; + +export type EntityRelationEntry = + (typeof RELATIONS_BY_ENTITY)[T][number]; + +export type EntityRelationName = + EntityRelationEntry["name"]; + +export function entityFields( + typeName: T, +): readonly EntityFieldName[] { + return FIELDS_BY_ENTITY[typeName]; +} + +export function entityRelations( + typeName: T, +): readonly EntityRelationEntry[] { + return RELATIONS_BY_ENTITY[typeName]; +} diff --git a/src/http.ts b/src/http.ts new file mode 100644 index 0000000..7692ebd --- /dev/null +++ b/src/http.ts @@ -0,0 +1,134 @@ +import { ClarizenApiError } from "./errors.js"; +import type { AuthMode, ClarizenErrorBody, HttpMethod, JsonObject } from "./types.js"; + +export type QueryParamValue = + | string + | number + | boolean + | readonly (string | number | boolean)[] + | undefined; + +export interface RequestOptions { + method?: HttpMethod; + query?: Record; + body?: JsonObject; +} + +function appendQueryParam( + params: URLSearchParams, + key: string, + value: QueryParamValue, +): void { + if (value === undefined) return; + if (Array.isArray(value)) { + for (const item of value) { + params.append(key, String(item)); + } + return; + } + params.set(key, String(value)); +} + +const MAX_ATTEMPTS = 3; + +export class HttpClient { + constructor( + private baseUrl: string, + private auth: AuthMode, + ) {} + + getBaseUrl(): string { + return this.baseUrl; + } + + setBaseUrl(baseUrl: string): void { + this.baseUrl = baseUrl.replace(/\/$/, ""); + } + + setAuth(auth: AuthMode): void { + this.auth = auth; + } + + getAuth(): AuthMode { + return this.auth; + } + + private authorizationHeader(): string | undefined { + if (this.auth.type === "apiKey") { + return `ApiKey ${this.auth.token}`; + } + if (this.auth.type === "session") { + return `Session ${this.auth.sessionId}`; + } + return undefined; + } + + async request(path: string, options: RequestOptions = {}): Promise { + for (let attempt = 1; ; attempt++) { + try { + return await this.executeOnce(path, options); + } catch (error) { + if ( + (error instanceof ClarizenApiError && error.isSessionTimeout()) || + attempt >= MAX_ATTEMPTS + ) { + throw error; + } + } + } + } + + private async executeOnce( + path: string, + options: RequestOptions, + ): Promise { + const method = options.method ?? "POST"; + const url = new URL(path, this.baseUrl); + + if (options.query) { + for (const [key, value] of Object.entries(options.query)) { + appendQueryParam(url.searchParams, key, value); + } + } + + const headers: Record = { + Accept: "application/json", + "Accept-Encoding": "gzip", + }; + const authHeader = this.authorizationHeader(); + if (authHeader) { + headers.Authorization = authHeader; + } + + const init: RequestInit = { method, headers }; + + if (method !== "GET" && options.body !== undefined) { + headers["Content-Type"] = "application/json"; + init.body = JSON.stringify(options.body); + } + + const response = await fetch(url, init); + const text = await response.text(); + + if (!text) { + if (!response.ok) { + throw new ClarizenApiError(response.status, { + errorCode: "HttpError", + message: response.statusText, + }); + } + return {} as T; + } + + const data = JSON.parse(text) as T | ClarizenErrorBody; + + if (!response.ok || (data && typeof data === "object" && "errorCode" in data)) { + const err = data as ClarizenErrorBody; + if (err.errorCode) { + throw new ClarizenApiError(response.status || 400, err); + } + } + + return data as T; + } +} diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..ffe86fe --- /dev/null +++ b/src/index.ts @@ -0,0 +1,39 @@ +export { Clarizen, type ClarizenOptions } from "./clarizen.js"; +export type { + AuthenticationService, + DataService, + MetadataService, +} from "./clarizen.js"; +export { ClarizenApiError } from "./errors.js"; +export { ENDPOINTS, NAMESPACES, type ClarizenNamespace } from "./endpoints.js"; +export { EntityObjectsService, entityObjectPath } from "./objects.js"; +export type { EntityGetOptions } from "./objects.js"; +export type { + AuthMode, + EntityQueryParams, + EntityQueryResult, + LoginParams, + LoginResult, + ServerDefinition, + SessionInfo, + EndpointDefinition, + JsonObject, + JsonValue, +} from "./types.js"; +export * from "./clarizen-api-types.js"; +export { + fetchMetadataCatalog, + filterStandardTypeNames, + isStandardMetadataName, + sanitizeEntityDescription, +} from "./metadata/index.js"; +export type { + DescribeMetadataParams, + DescribeMetadataResult, + EntityMetadataEntry, + FetchMetadataCatalogOptions, + ListEntitiesResult, + MetadataCatalog, + MetadataFlag, +} from "./metadata/index.js"; +export * from "./generated/metadata-types.js"; diff --git a/src/metadata/catalog.ts b/src/metadata/catalog.ts new file mode 100644 index 0000000..8215ff1 --- /dev/null +++ b/src/metadata/catalog.ts @@ -0,0 +1,160 @@ +import { ClarizenApiError } from "../errors.js"; +import { ENDPOINTS } from "../endpoints.js"; +import type { HttpClient } from "../http.js"; +import { + filterStandardTypeNames, + sanitizeEntityDescription, +} from "./filter.js"; +import type { + DescribeMetadataResult, + EntityMetadataEntry, + FetchMetadataCatalogOptions, + ListEntitiesResult, + MetadataCatalog, + MetadataFlag, +} from "./types.js"; + +const DEFAULT_FLAGS: MetadataFlag[] = ["fields", "relations"]; +const DEFAULT_BATCH_SIZE = 20; + +const DESCRIBE_METADATA_PATH = + ENDPOINTS.find( + (e) => e.namespace === "metadata" && e.operation === "DescribeMetadata", + )?.path ?? "/V2.0/services/metadata/describeMetadata"; + +const LIST_ENTITIES_PATH = + ENDPOINTS.find( + (e) => e.namespace === "metadata" && e.operation === "ListEntities", + )?.path ?? "/V2.0/services/metadata/listEntities"; + +function describeMetadataQuery( + typeNames: string[] | undefined, + flags: MetadataFlag[], +): Record { + const query: Record = { + flags, + }; + if (typeNames !== undefined && typeNames.length > 0) { + query.typeNames = typeNames; + } + return query; +} + +async function listEntities(http: HttpClient): Promise { + const result = await http.request(LIST_ENTITIES_PATH, { + method: "GET", + }); + return result.typeNames ?? []; +} + +async function describeMetadata( + http: HttpClient, + typeNames: string[] | undefined, + flags: MetadataFlag[], +): Promise { + const result = await http.request( + DESCRIBE_METADATA_PATH, + { + method: "GET", + query: describeMetadataQuery(typeNames, flags), + }, + ); + + const entries: EntityMetadataEntry[] = []; + for (const desc of result.entityDescriptions ?? []) { + const entry = sanitizeEntityDescription(desc); + if (entry) { + entries.push(entry); + } + } + return entries; +} + +function chunk(items: T[], size: number): T[][] { + const chunks: T[][] = []; + for (let i = 0; i < items.length; i += size) { + chunks.push(items.slice(i, i + size)); + } + return chunks; +} + +function mergeEntries( + batches: EntityMetadataEntry[][], +): EntityMetadataEntry[] { + const byType = new Map(); + for (const batch of batches) { + for (const entry of batch) { + byType.set(entry.typeName, entry); + } + } + return [...byType.values()].sort((a, b) => + a.typeName.localeCompare(b.typeName), + ); +} + +function needsBatchedFetch(error: unknown): boolean { + if (error instanceof ClarizenApiError) { + return ( + error.errorCode === "MissingArgument" || + error.errorCode === "InvalidArgument" + ); + } + if (error instanceof Error) { + const msg = error.message.toLowerCase(); + return msg.includes("missing") || msg.includes("typenames"); + } + return false; +} + +async function fetchBatched( + http: HttpClient, + flags: MetadataFlag[], + batchSize: number, + log: (message: string) => void, +): Promise { + log("listEntities + batched describeMetadata..."); + const rawNames = await listEntities(http); + const typeNames = filterStandardTypeNames(rawNames); + log(` ${typeNames.length} standard entities (${rawNames.length} total)`); + + const batches = chunk(typeNames, batchSize); + const batchResults: EntityMetadataEntry[][] = []; + + for (let i = 0; i < batches.length; i++) { + const batch = batches[i]!; + log(` batch ${i + 1}/${batches.length} (${batch.length} types)...`); + batchResults.push(await describeMetadata(http, batch, flags)); + } + + return mergeEntries(batchResults); +} + +export async function fetchMetadataCatalog( + http: HttpClient, + options: FetchMetadataCatalogOptions = {}, +): Promise { + const flags = options.flags ?? DEFAULT_FLAGS; + const batchSize = options.batchSize ?? DEFAULT_BATCH_SIZE; + const log = options.onProgress ?? (() => {}); + + let entries: EntityMetadataEntry[]; + + try { + log("describeMetadata (all entities)..."); + entries = await describeMetadata(http, undefined, flags); + if (entries.length === 0) { + entries = await fetchBatched(http, flags, batchSize, log); + } + } catch (error) { + if (needsBatchedFetch(error)) { + entries = await fetchBatched(http, flags, batchSize, log); + } else { + throw error; + } + } + + return { + fetchedAt: new Date().toISOString(), + entities: entries, + }; +} diff --git a/src/metadata/filter.ts b/src/metadata/filter.ts new file mode 100644 index 0000000..31e3ebe --- /dev/null +++ b/src/metadata/filter.ts @@ -0,0 +1,38 @@ +import type { EntityDescription } from "../clarizen-api-types.js"; +import type { EntityMetadataEntry } from "./types.js"; + +/** Standard (non-custom) metadata names exclude C_ and R_ segments. */ +export function isStandardMetadataName(name: string): boolean { + return !name.includes("C_") && !name.includes("R_"); +} + +export function filterStandardTypeNames(typeNames: string[]): string[] { + return typeNames.filter(isStandardMetadataName); +} + +export function sanitizeEntityDescription( + desc: EntityDescription, +): EntityMetadataEntry | null { + const typeName = desc.typeName; + if (!typeName || !isStandardMetadataName(typeName)) { + return null; + } + + const fields = (desc.fields ?? []).filter( + (f) => f.name && isStandardMetadataName(f.name), + ); + + const relations = (desc.relations ?? []).filter( + (r) => + r.name && + isStandardMetadataName(r.name) && + (!r.relatedTypeName || isStandardMetadataName(r.relatedTypeName)), + ); + + return { + typeName, + label: desc.label, + fields, + relations, + }; +} diff --git a/src/metadata/generate-types.ts b/src/metadata/generate-types.ts new file mode 100644 index 0000000..3fd7b71 --- /dev/null +++ b/src/metadata/generate-types.ts @@ -0,0 +1,70 @@ +import type { MetadataCatalog } from "./types.js"; + +function escapeString(value: string): string { + return value.replace(/\\/g, "\\\\").replace(/"/g, '\\"'); +} + +function objectKey(name: string): string { + return /^[A-Za-z_][A-Za-z0-9_]*$/.test(name) ? name : JSON.stringify(name); +} + +export function generateMetadataTypesFile(catalog: MetadataCatalog): string { + const entityTypes = catalog.entities.map((e) => e.typeName); + + const fieldsLines = catalog.entities.map((e) => { + const names = e.fields + .map((f) => f.name) + .filter((n): n is string => Boolean(n)); + const literals = names.map((n) => `"${escapeString(n)}"`).join(", "); + return ` ${objectKey(e.typeName)}: [${literals}] as const`; + }); + + const relationsLines = catalog.entities.map((e) => { + const rels = e.relations + .filter((r) => r.name && r.relatedTypeName) + .map( + (r) => + `{ name: "${escapeString(r.name!)}", relatedTypeName: "${escapeString(r.relatedTypeName!)}" }`, + ); + return ` ${objectKey(e.typeName)}: [${rels.join(", ")}] as const`; + }); + + return `// Auto-generated by npm run scrape:metadata. Do not edit manually. +/* eslint-disable */ + +export const ENTITY_TYPES = [ +${entityTypes.map((t) => ` "${escapeString(t)}",`).join("\n")} +] as const; + +export type EntityTypeName = (typeof ENTITY_TYPES)[number]; + +export const FIELDS_BY_ENTITY = { +${fieldsLines.join(",\n")}, +} as const; + +export type EntityFieldName = + (typeof FIELDS_BY_ENTITY)[T][number]; + +export const RELATIONS_BY_ENTITY = { +${relationsLines.join(",\n")}, +} as const; + +export type EntityRelationEntry = + (typeof RELATIONS_BY_ENTITY)[T][number]; + +export type EntityRelationName = + EntityRelationEntry["name"]; + +export function entityFields( + typeName: T, +): readonly EntityFieldName[] { + return FIELDS_BY_ENTITY[typeName]; +} + +export function entityRelations( + typeName: T, +): readonly EntityRelationEntry[] { + return RELATIONS_BY_ENTITY[typeName]; +} +`; +} diff --git a/src/metadata/index.ts b/src/metadata/index.ts new file mode 100644 index 0000000..8617d3c --- /dev/null +++ b/src/metadata/index.ts @@ -0,0 +1,15 @@ +export { fetchMetadataCatalog } from "./catalog.js"; +export { + filterStandardTypeNames, + isStandardMetadataName, + sanitizeEntityDescription, +} from "./filter.js"; +export type { + DescribeMetadataParams, + DescribeMetadataResult, + EntityMetadataEntry, + FetchMetadataCatalogOptions, + ListEntitiesResult, + MetadataCatalog, + MetadataFlag, +} from "./types.js"; diff --git a/src/metadata/service.ts b/src/metadata/service.ts new file mode 100644 index 0000000..0067fff --- /dev/null +++ b/src/metadata/service.ts @@ -0,0 +1,67 @@ +import type { HttpClient, QueryParamValue } from "../http.js"; +import { + createNamespaceService, + type OperationCall, +} from "../service.js"; +import type { JsonObject } from "../types.js"; +import { fetchMetadataCatalog } from "./catalog.js"; +import type { + DescribeMetadataParams, + DescribeMetadataResult, + FetchMetadataCatalogOptions, + ListEntitiesResult, + MetadataCatalog, +} from "./types.js"; + +function describeMetadataQuery( + params?: DescribeMetadataParams, +): Record | undefined { + if (!params) return undefined; + const query: Record = {}; + if (params.typeNames?.length) { + query.typeNames = params.typeNames; + } + if (params.flags?.length) { + query.flags = params.flags; + } + return Object.keys(query).length > 0 ? query : undefined; +} + +export interface MetadataService { + listEntities: () => Promise; + describeMetadata: ( + params?: DescribeMetadataParams, + ) => Promise; + fetchCatalog: ( + options?: FetchMetadataCatalogOptions, + ) => Promise; + ( + operation: string, + body?: JsonObject, + query?: Record, + ): Promise; + [operation: string]: + | OperationCall + | (() => Promise) + | ((params?: DescribeMetadataParams) => Promise) + | ((options?: FetchMetadataCatalogOptions) => Promise); +} + +export function createMetadataService(http: HttpClient): MetadataService { + const base = createNamespaceService(http, "metadata"); + const service = base as MetadataService; + + service.listEntities = () => + base.listEntities(undefined, undefined) as Promise; + + service.describeMetadata = (params?: DescribeMetadataParams) => + base.describeMetadata( + undefined, + describeMetadataQuery(params), + ) as Promise; + + service.fetchCatalog = (options?: FetchMetadataCatalogOptions) => + fetchMetadataCatalog(http, options); + + return service; +} diff --git a/src/metadata/types.ts b/src/metadata/types.ts new file mode 100644 index 0000000..545dce5 --- /dev/null +++ b/src/metadata/types.ts @@ -0,0 +1,38 @@ +import type { + EntityDescription, + FieldDescription, + RelationDescription, +} from "../clarizen-api-types.js"; + +export type MetadataFlag = "fields" | "relations"; + +export interface ListEntitiesResult { + typeNames: string[]; +} + +export interface DescribeMetadataParams { + typeNames?: string[]; + flags?: MetadataFlag[]; +} + +export interface DescribeMetadataResult { + entityDescriptions: EntityDescription[]; +} + +export interface EntityMetadataEntry { + typeName: string; + label?: string; + fields: FieldDescription[]; + relations: RelationDescription[]; +} + +export interface MetadataCatalog { + fetchedAt: string; + entities: EntityMetadataEntry[]; +} + +export interface FetchMetadataCatalogOptions { + flags?: MetadataFlag[]; + batchSize?: number; + onProgress?: (message: string) => void; +} diff --git a/src/objects.ts b/src/objects.ts new file mode 100644 index 0000000..f0561f6 --- /dev/null +++ b/src/objects.ts @@ -0,0 +1,51 @@ +import type { Entity, EntityId } from "./clarizen-api-types.js"; +import type { HttpClient } from "./http.js"; +import type { JsonObject } from "./types.js"; + +export function entityObjectPath(typeName: string, id?: string): string { + const type = encodeURIComponent(typeName); + if (id) { + const entityId = id.includes("/") ? id.split("/").pop()! : id; + return `/V2.0/services/data/objects/${type}/${encodeURIComponent(entityId)}`; + } + return `/V2.0/services/data/objects/${type}`; +} + +export interface EntityGetOptions { + fields?: string[]; +} + +export class EntityObjectsService { + constructor(private readonly http: HttpClient) {} + + get(typeName: string, id: EntityId, options?: EntityGetOptions): Promise { + const query: Record = {}; + if (options?.fields?.length) { + query.fields = options.fields.join(","); + } + return this.http.request(entityObjectPath(typeName, id), { + method: "GET", + query, + }); + } + + create(typeName: string, fields: JsonObject): Promise<{ id: EntityId }> { + return this.http.request<{ id: EntityId }>(entityObjectPath(typeName), { + method: "PUT", + body: fields, + }); + } + + update(typeName: string, id: EntityId, fields: JsonObject): Promise { + return this.http.request(entityObjectPath(typeName, id), { + method: "POST", + body: fields, + }); + } + + delete(typeName: string, id: EntityId): Promise { + return this.http.request(entityObjectPath(typeName, id), { + method: "DELETE", + }); + } +} diff --git a/src/service.ts b/src/service.ts new file mode 100644 index 0000000..1305879 --- /dev/null +++ b/src/service.ts @@ -0,0 +1,57 @@ +import { ENDPOINTS } from "./endpoints.js"; +import type { HttpClient, QueryParamValue } from "./http.js"; +import type { EndpointDefinition, HttpMethod, JsonObject } from "./types.js"; + +function toCamelCase(name: string): string { + return name.charAt(0).toLowerCase() + name.slice(1); +} + +function pickMethod(endpoint: EndpointDefinition): HttpMethod { + if (endpoint.httpMethods.includes("POST")) return "POST"; + if (endpoint.httpMethods.includes("GET")) return "GET"; + if (endpoint.httpMethods.includes("PUT")) return "PUT"; + return endpoint.httpMethods[0]; +} + +export type OperationCall = ( + body?: JsonObject, + query?: Record, +) => Promise; + +export type ServiceCall = ( + operation: string, + body?: JsonObject, + query?: Record, +) => Promise; + +export type NamespaceService = ServiceCall & Record; + +export function createNamespaceService( + http: HttpClient, + namespace: string, +): NamespaceService { + const endpoints = ENDPOINTS.filter((e) => e.namespace === namespace); + const handler: ServiceCall = async (operation, body, query) => { + const endpoint = endpoints.find( + (e) => e.operation.toLowerCase() === operation.toLowerCase(), + ); + if (!endpoint) { + throw new Error(`Unknown ${namespace} operation: ${operation}`); + } + return http.request(endpoint.path, { + method: pickMethod(endpoint), + body, + query, + }); + }; + + const service = handler as NamespaceService; + + for (const endpoint of endpoints) { + const methodName = toCamelCase(endpoint.operation); + service[methodName] = (body?, query?) => + handler(endpoint.operation, body, query); + } + + return service; +} diff --git a/src/types.ts b/src/types.ts new file mode 100644 index 0000000..230a996 --- /dev/null +++ b/src/types.ts @@ -0,0 +1,75 @@ +import type { + Condition, + Entity, + EntityQuery, + ErrorCode, + LoginOptions, + Paging, +} from "./clarizen-api-types.js"; + +export type JsonValue = + | string + | number + | boolean + | null + | JsonValue[] + | { [key: string]: JsonValue }; + +export type JsonObject = { [key: string]: JsonValue }; + +export interface ClarizenErrorBody { + errorCode: ErrorCode | string; + message: string; + referenceId?: string; +} + +export interface LoginParams { + userName: string; + password: string; + loginOptions?: LoginOptions; +} + +export interface ServerDefinition { + serverLocation: string; + appLocation?: string; + organizationId?: number; +} + +export interface LoginResult { + sessionId: string; + userId: string; + organizationId: string; + licenseType: string; + serverTime?: string; +} + +export interface SessionInfo { + sessionId: string; + userId: string; + organizationId: string; + serverTime?: string; + licenseType?: string; + customInfo?: Array<{ fieldName: string; value: string }>; +} + +export type EntityQueryParams = EntityQuery; + +export interface EntityQueryResult { + entities: Entity[]; + paging?: Paging; +} + +export type HttpMethod = "GET" | "POST" | "PUT" | "DELETE"; + +export interface EndpointDefinition { + namespace: string; + operation: string; + path: string; + httpMethods: HttpMethod[]; + description: string; +} + +export type AuthMode = + | { type: "apiKey"; token: string } + | { type: "session"; sessionId: string } + | { type: "none" }; diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..0223be6 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "NodeNext", + "moduleResolution": "NodeNext", + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "outDir": "./dist", + "rootDir": "./src", + "strict": true, + "skipLibCheck": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] +}